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

首頁 > 語言 > JavaScript > 正文

JS中實現replaceAll的方法(實例代碼)

2024-05-06 15:54:45
字體:
來源:轉載
供稿:網友
本文是對JS中實現replaceAll的方法進行了詳細的總結介紹,需要的朋友可以過來參考下,希望對大家有所幫助

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

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:字符串表達式包含要替代的子字符串。
reallyDo:被搜索的子字符串。
replaceWith:用于替換的子字符串。

復制代碼 代碼如下:


<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> 

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 灯塔市| 余姚市| 新干县| 姜堰市| 丹凤县| 深州市| 大理市| 凤山市| 鄂温| 井冈山市| 乡城县| 秭归县| 陇南市| 乌审旗| 河津市| 大名县| 垣曲县| 宜川县| 锦屏县| 黄冈市| 巨野县| 浠水县| 宜章县| 五常市| 疏附县| 云南省| 万源市| 济阳县| 枣庄市| 四川省| 奈曼旗| 南宫市| 玉树县| 麻栗坡县| 麻阳| 锡林郭勒盟| 镇坪县| 田阳县| 石城县| 大荔县| 曲阳县|