刪除子字串的兩種方法:1、使用replace()去除字串中第一次出現的子字串,語法“字串物件.replace("子字串值","")” ;2、使用replaceAll()去除全部子字串,語法「字串物件.replaceAll("子字串值","")」。
本教學操作環境:windows7系統、ECMAScript 6版、Dell G3電腦。
es6中刪除字串中子字串的方法
#1、使用replace()函數
replace() 方法用於在字串中用一些字元替換另一些字元的子字串。
當替換值為空字元時即可刪除指定子字串。
var str = "Hello world!"; var n=str.replace("Hello",""); console.log(n);
replace()函數只取代第一次符合的子字串:
var str="Visit Microsoft! Visit Microsoft!"; var n=str.replace("Microsoft",""); console.log(n);
##2 、使用replaceAll()函數
replaceAll() 方法用於在字串中用一些字符替換另一些字符,或替換一個與正則表達式匹配的子串,該函數會替換所有匹配到的子字串。 同樣,當替換值為空字元時即可刪除指定子字串。var str = "Hello world!"; var n=str.replaceAll("world",""); console.log(n);replaceAll()函數會取代全部符合的子字串:
var str="Visit Microsoft! Visit Microsoft!"; var n=str.replaceAll("Microsoft",""); console.log(n);【相關推薦:
以上是es6怎麼刪除子字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!