标签:返回 alt images als mat match 个数 ace 自己
1.string.match(REG) 接受一个正则表达式;成功匹配返回一个数组,数组的index指向匹配的位置
2,string.replace(REG,taeget) 接受两个参数,一个是正则表达式,一个是来替换他的字符串
全局模式下:
3, string.search(REG) 接受一个正则表达式,返回子字符串的起始位置
1,reg.test(str) 接受一个字符串作为参数,返回true 或者false
2,reg.exec(str) 接受一个字符串作为参数 ,成功匹配返回一个数组,数组的index指向匹配的位置(和string.match()类似)
以上。
标签:返回 alt images als mat match 个数 ace 自己
原文地址:http://www.cnblogs.com/llauser/p/6715077.html