RegExp 是正則表達式的縮寫。正則表達式
當您檢索某個文本時,能夠使用一種模式來描述要檢索的內容。RegExp 就是這種模式。regexp
簡單的模式能夠是一個單獨的字符。對象
更復雜的模式包括了更多的字符,並可用於解析、格式檢查、替換等等。ip
您能夠規定字符串中的檢索位置,以及要檢索的字符類型,等等。字符串
RegExp 對象用於存儲檢索模式。get
經過 new 關鍵詞來定義 RegExp 對象。如下代碼定義了名爲 patt1 的 RegExp 對象,其模式是 "e":it
var patt1=new RegExp("e");
當您使用該 RegExp 對象在一個字符串中檢索時,將尋找的是字符 "e"。class
RegExp 對象有 3 個方法:test()、exec() 以及 compile()。test
test() 方法檢索字符串中的指定值。返回值是 true 或 false。原理
var patt1=new RegExp("e"); document.write(patt1.test("The best things in life are free"));
因爲該字符串中存在字母 "e",以上代碼的輸出將是:
true
exec() 方法檢索字符串中的指定值。返回值是被找到的值。若是沒有發現匹配,則返回 null。
var patt1=new RegExp("e"); document.write(patt1.exec("The best things in life are free"));
因爲該字符串中存在字母 "e",以上代碼的輸出將是:
e
您能夠向 RegExp 對象添加第二個參數,以設定檢索。例如,若是須要找到全部某個字符的全部存在,則能夠使用 "g" 參數 ("global")。
如需關於如何修改搜索模式的完整信息,請訪問咱們的 RegExp 對象參考手冊。
在使用 "g" 參數時,exec() 的工做原理以下:
var patt1=new RegExp("e","g"); do { result=patt1.exec("The best things in life are free"); document.write(result); } while (result!=null)
因爲這個字符串中 6 個 "e" 字母,代碼的輸出將是:
eeeeeenull
compile() 方法用於改變 RegExp。
compile() 既能夠改變檢索模式,也能夠添加或刪除第二個參數。
var patt1=new RegExp("e"); document.write(patt1.test("The best things in life are free")); patt1.compile("d"); document.write(patt1.test("The best things in life are free"));
因爲字符串中存在 "e",而沒有 "d",以上代碼的輸出是:
truefalse