我有一个下面的字符串,我需要提取字符串的某些部分。
input : 'response:"The check has enabled" '
output: The check has enabled
有没有更好的方法,我已经通过下面的代码片段实现了。
let string = 'response:"The check has enabled" '
let output = string.replace(
`response:"`,
""
)
output = output.substring(0, output.length - 2);
console.log(output)
一只名叫tom的猫
相关分类