使用 match() 方法將正則表達式與 JavaScript 中的字符串進行匹配。您可以嘗試運行以下代碼來匹配正則表達式 –
以下是參數 –
- ma??tch ( param ) – 正則表達式對象。
示例
您可以嘗試運行以下代碼來匹配正則表達式一個字符串 –
<html> <head> <title>JavaScript String match() Method</title> </head> <body> <script> var str = "For more information, see Chapter 3.4.5.1"; var re = /(chapter \d+(\.\d)*)/i; var found = str.match( re ); document.write(found ); </script> </body> </html>
登錄后復制
以上就是如何將正則表達式與字符串匹配?的詳細內容,更多請關注www.92cms.cn其它相關文章!