我有一個(gè)下面的字符串,我需要提取字符串的某些部分。 input : 'response:"The check has enabled" ' output: The check has enabled有沒有更好的方法,我已經(jīng)通過下面的代碼片段實(shí)現(xiàn)了。let string = 'response:"The check has enabled" 'let output = string.replace( `response:"`, "")output = output.substring(0, output.length - 2);console.log(output)
提取字符串的特定部分
猛跑小豬
2023-08-24 15:59:13