match()方法可在字符串内检索指定的值,或找到一个或多个正则表达式的匹配。
该方法类似indexOf()和lastIndexOf(),但是它返回指定的值,而不是字符串的位置。

语法:

strObj.match(searchvalue)
strObj.match(regexp)

-searchvalue参数,必需。指定要检索的字符串值。
-regexp参数,必需。规定要匹配的模式的RegExp对象。如果该参数不是RegExp对象,则需要首先把它传递给RegExp构造函数,将其转换为RegExp对象。

返回值:存放匹配结果的数组。
**说明:**match()方法将检索字符串stringObject,以找到一个或多个与regexp匹配的文本。

//匹配搜索字符串
<script type="text/javascript">
var str="hello world!";
document.write(str.match("world")+"<br/>");
document.write(str.match("World")+"<br/>");
document.write(str.match("worlld")+"<br/>");
document.write(str.match("world!"));
</script>
//输出
//world
//null
//null
//world!
//全局匹配正则表达式,检索字符串中的数字
<script type="tet/javascript">
var str="1 plus 2 equal 3";
document.write(str.match(/\d+/g));
</script>