match() 方法可在字符串内检索指定的值,或找到一个或多个正则表达式的匹配。
该方法类似 indexOf() 和 lastIndexOf(),但是它返回结果数组,而不是字符串的位置。
stringObject.match(searchvalue)
stringObject.match(regexp)
参数 | 描述 |
---|---|
searchvalue | 必需。规定要检索的字符串值。 |
regexp | 必需。规定要匹配的模式的 RegExp 对象。如果该参数不是 RegExp 对象,则需要首先把它传递给 RegExp 构造函数,将其转换为 RegExp 对象。 |
// 参数为searchvalue时:
var str="Hello world!"
str.match("world") // ["world", index: 6, input: "Hello world!", groups: undefined]
str.match("World") // null
str.match("worlld") // null
str.match("world!") // ["world!", index: 6, input: "Hello world!", groups: undefined]
// 参数为正则表达式时:
var str=" mm -4193 1 with words"
str.match(/\d+/g) // ["4193", "1"]
str.match(/\d+/) // 未加全局时:["4193", index: 5, input: " mm -4193 1 with words", groups: undefined]
var str2="-6754 uuuid" //获取带符号的整数
str2.match(/^(-|\+)?\d+/) // ["-6754", "-", index: 0, input: "-6754 uuuid", groups: undefined]