码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript正在表达式方法总结

时间:2016-12-07 13:52:26      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:document   相同   字符   个数   引用   mac   ring   手动   sea   

str.match(reg)

1.reg没有全局标志g,match将只执行一次匹配。匹配成功返回一个数组,arr = [$0,$1,$2,...,index,str],匹配失败返回null。

   arr中的参数说明,$0是匹配文本,$i是第i个子表达式匹配的文本,index是$0在stringObject中的起始位置,str是对字符串对象的引用

2.reg有全局标志g,macth将执行全局检索。匹配成功返回一个数组,arr = [str0,str1,str2,...],匹配失败返回null。

   arr中的参数说明,str0是匹配文本,stri是匹配的子字符串(是对整个reg的匹配,非子表达式),没有额外参数。


str.search(reg)

返回第一个与reg匹配的子串的起始位置,没有匹配返回-1.


reg.exec(str)

1. reg没有全局标志g,匹配成功返回一个数组,arr = [$0,$1,$2,...,index,str],匹配失败返回null,与string.match相同

2. reg有全局标志g,exec会在reg的lastIndex属性指定的字符处开始检索字符串,找到匹配文本,lastIndex会设置该匹配文本的最后一个字符的下一个
  位置。找不到匹配文本,返回null,lastIndex重置为0

如果在一个字符串中完成了一次模式匹配之后要开始检索新的字符串,就必须手动地把 lastIndex 属性重置为 0

例如:

var str = "Visit W3School"; 
var patt = new RegExp("W3School","g");
var result;

while ((result = patt.exec(str)) != null) {
    document.write(result);
    document.write("<br />");
    document.write(patt.lastIndex);
}

或者直接

while (result = patt.exec(str)) {
    document.write(result);
    document.write("<br />");
    document.write(patt.lastIndex);
}

reg.test(str)

返回字符串中是否含有与reg匹配的文本,有则true,无则false。

 

JavaScript正在表达式方法总结

标签:document   相同   字符   个数   引用   mac   ring   手动   sea   

原文地址:http://www.cnblogs.com/mengff/p/6140552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!