javascriptRegex對象方法 compile() exec() test()的比較

來源:互聯網
上載者:User

標籤:javascript compile exec test

compile() 方法用於在指令碼執行過程中編譯Regex,也可用於改變和重新編譯Regex。

exec() 方法用於檢索字串中的Regex的匹配。找到則返回一個數組,未找到則返回null。

test() 方法用於檢測一個字串是否匹配某個模式。返回true 或 false.

文法:

compile():
RegExpObject.compile(regexp,modifier)regexp Regex。modifier 規定匹配的類型。"g" 用於全域匹配,"i" 用於區分大小寫,"gi" 用於全域區分大小寫匹配。RegExpObject.exec(string)string 要檢索的字串。RegExpObject.test(string)string 要檢測的字串。<script type="text/javascript">    var str="Every man in the world! Every woman on earth!";    patt=/man/g;    str2=str.replace(patt,"person");    document.write(str2+"<br />");patt=/(wo)?man/g;patt.compile(patt);str2=str.replace(patt,"person");    document.write(str2);</script>輸出結果:Every person in the world! Every woperson on earth!          Every person in the world! Every person on earth!<script type="text/javascript">    var str = "good jjdky";     var patt = new RegExp("jjdky","g");    var result;    while ((result = patt.exec(str)) != null)  {    document.write(result);    document.write("<br />");    document.write(patt.lastIndex); }</script>輸出結果:jjdky          10<script type="text/javascript">    var str = "good jjdky";    var patt1 = new RegExp("jjdky");    var result = patt1.test(str);    document.write("Result: " + result);</script>輸出結果:Result: true

本文出自 “申請部落格的第一天” 部落格,請務必保留此出處http://6965535.blog.51cto.com/6955535/1874921

javascriptRegex對象方法 compile() exec() test()的比較

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.