match函数 String.prototype.match 参数 regexp 返回 返回包含所有匹配的数组,如果匹配失败返回Null. 数组第一项是整段字符串的匹配,第二项至以后都是捕获匹配. 注意 需要注意的是: If the regular expression includes the g flag, the method returns an Array containing all matched substrings rather than match objects. Capt…
import rehelp(re.compile)'''输出结果为:Help on function compile in module re: compile(pattern, flags=0) Compile a regular expression pattern, returning a pattern object.通过help可知:编译一个正则表达式模式,返回一个模式对象.''' '''第二个参数flags是匹配模式,可以使用按位或’|’表示同时生效,也可以在正则表达式字符串中指定.…
1.g标志 g标志一般是与match和exec来连用,否则g标志没有太大的意义. 先来看一个带g标志的例子: var str = "tankZHang (231144) tank ying (155445)"; var res = str.match(/tank/); //没有加/g console.log(res); //返回一个数组,数组有三个成员,一个是匹配的对象.在一个index:0(匹配到的位置)和input(原字符串) ["tank", index…