标签:
match() 方法可在字符串中搜索指定的值,或与正则表达式的匹配的值。
参数 | 描述 |
---|---|
str/regexp | 必需。规定要检索的字符串或正则表达式。 |
<script type="text/javascript"> var str="Hello world!"; document.write(str.match("world")); // world document.write(str.match("World")); // null var str="1 plus 2 equal 3"; document.write(str.match(/\d+/g)); // 1,2,3 </script>
使用正则获取指定字符串。
<script> var str1 = "acb=‘1111111‘",str2= ‘acb="2222222"‘; // 过滤 str1 = str1.replace(/([a-z]+=\‘)[0-9]+(\‘)/,‘$1$2‘); alert(str1) // 获取方法1 str_1 = str2.replace(/[a-z]+=\"([0-9]+)\"/,‘$1‘); alert(str_1) // 获取方法2 str_2 = str2.match(/[a-z]+=\"([0-9]+)\"/); alert(str_2[1]); </script>
转:http://www.hi-docs.com/javascript/match.html
标签:
原文地址:http://www.cnblogs.com/wangfuyou/p/5922102.html