首页 > 代码库 > JAVASCRIPT match()

JAVASCRIPT match()

定义和用法

match() 方法可在字符串中搜索指定的值,或与正则表达式的匹配的值。

语法

  1. match(str/regexp)
参数描述
str/regexp必需。规定要检索的字符串或正则表达式。

例子

<script type="text/javascript">var str="Hello world!";document.write(str.match("world"));// worlddocument.write(str.match("World"));// nullvar 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)// 获取方法1str_1 = str2.replace(/[a-z]+=\"([0-9]+)\"/,‘$1‘);alert(str_1)// 获取方法2str_2 = str2.match(/[a-z]+=\"([0-9]+)\"/);alert(str_2[1]);</script>

 

转:http://www.hi-docs.com/javascript/match.html

 

JAVASCRIPT match()