Javascript裡的兩種使用正則的方法

來源:互聯網
上載者:User

在Javascript裡,有兩種使用正則的方法,一是建立一個Regex的執行個體,而是使用String對象裡的正則表達相關的方法.
Regex對象
兩種建立方法
var my_regex=/[a-z]+/g;
var my_regex=new ("[a-z]+","g");
方法
exec(string),對string進行正則處理,並返回匹配結果.
test(string),測試string是否含有匹配結果
字串對象中的正則
方法
match(pattern) 根據pattern進行正則匹配,如果匹配到,返回匹配結果,如匹配不到返回null
search(pattern) 根據pattern進行正則匹配,如果匹配到一個結果,則返回它的索引數;否則返回-1
replace(pattern,replacement) 根據pattern進行正則匹配,把匹配結果替換為replacement
split(pattern) 根據pattern進行正則分割,返回一個分割的數組
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.