国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > JavaScript > 正文

JS中實(shí)現(xiàn)replaceAll的方法(實(shí)例代碼)

2019-11-20 21:43:54
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

第一次發(fā)現(xiàn)JavaScript中replace() 方法如果直接用str.replace("-","!") 只會(huì)替換第一個(gè)匹配的字符.
而str.replace(//-/g,"!")則可以全部替換掉匹配的字符(g為全局標(biāo)志)。

replace()
The replace() method returns the string that results when you replace text matching its first argument
(a regular expression) with the text of the second argument (a string).
If the g (global) flag is not set in the regular expression declaration, this method replaces only the first
occurrence of the pattern. For example,

var s = "Hello. Regexps are fun.";s = s.replace(//./, "!"); // replace first period with an exclamation pointalert(s);

produces the string “Hello! Regexps are fun.” Including the g flag will cause the interpreter to
perform a global replace, finding and replacing every matching substring. For example,

var s = "Hello. Regexps are fun.";s = s.replace(//./g, "!"); // replace all periods with exclamation pointsalert(s);

yields this result: “Hello! Regexps are fun!”

所以可以用以下幾種方式.:
string.replace(/reallyDo/g, replaceWith);
string.replace(new RegExp(reallyDo, 'g'), replaceWith);

string:字符串表達(dá)式包含要替代的子字符串。
reallyDo:被搜索的子字符串。
replaceWith:用于替換的子字符串。

復(fù)制代碼 代碼如下:

<script type="text/javascript"> 
String.prototype.replaceAll = function(reallyDo, replaceWith, ignoreCase) { 
    if (!RegExp.prototype.isPrototypeOf(reallyDo)) { 
        return this.replace(new RegExp(reallyDo, (ignoreCase ? "gi": "g")), replaceWith); 
    } else { 
        return this.replace(reallyDo, replaceWith); 
    } 

</script> 

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 东至县| 滕州市| 海伦市| 堆龙德庆县| 司法| 盖州市| 星子县| 军事| 大城县| 池州市| 伊川县| 昔阳县| 香河县| 中超| 开原市| 龙陵县| 翁源县| 峡江县| 平乡县| 泸定县| 鄂州市| 临朐县| 清流县| 涟源市| 遂昌县| 赤城县| 富裕县| 兴安盟| 桓台县| 怀远县| 九龙坡区| 永城市| 陇川县| 高台县| 嘉义市| 东乌珠穆沁旗| 三亚市| 武冈市| 长岛县| 凤冈县| 株洲市|