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

首頁 > 開發 > JS > 正文

JavaScript 中的replace方法說明

2024-09-06 12:42:36
字體:
來源:轉載
供稿:網友
第一次發現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!”  
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 贵定县| 玛曲县| 泽库县| 资中县| 鄯善县| 封开县| 临沂市| 剑川县| 教育| 柳河县| 瓦房店市| 扬州市| 丰镇市| 滦平县| 河东区| 高州市| 教育| 长乐市| 葵青区| 纳雍县| 抚顺市| 永定县| 十堰市| 黔江区| 大竹县| 湄潭县| 中江县| 仙桃市| 社旗县| 沅江市| 锡林浩特市| 泰宁县| 新田县| 措勤县| 香河县| 梅河口市| 三门峡市| 霍山县| 中西区| 伊吾县| 苏尼特右旗|