想改善這個問題?通過編輯這篇文章,更新問題,使其只關注一個問題。
下面是一個示例,它只是添加了一個IF語句來查看字符串是以aa還是ab開頭:
var check = 'aa hello world';
if (check.startsWith('aa') || check.startsWith('ab')) {
check = check.substring(3);
}
您甚至可以保留您的代碼:
var check = 'aa hello world';
if (check.startsWith('aa') || check.startsWith('ab')) {
check = check.replace(/^(.){2}/,'').trim()
}
console.log(check)
回答:
"hello world"
你能試著用切片嗎
let text = "aa hello world!";
if (text.startsWith('aa') || text.startsWith('ab')) {
text = text.slice(3);
}
結果:
hello world