色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

如何從字符串和空格中刪除前兩個字符[關閉]

李中冰2年前8瀏覽0評論

想改善這個問題?通過編輯這篇文章,更新問題,使其只關注一個問題。

下面是一個示例,它只是添加了一個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