標籤雲

搜尋此網誌

2008/07/10

JavaScript 的 RegExp 物件

RegExp 是 Regular Expression 的縮寫, 用來當作一種 pattern

例:
var pattern1 = new RegExp("e"); //用來在字串中找 e 的 pattern

RegExp 的方法:
test()
//Returns true or false

exec()
//Returns the text of the found value. If no match is found, it returns null

compile()
//change both the search pattern, and add or remove the second parameter.

更多正規表示式相關資訊( W3Schools )

沒有留言: