首页 > 代码库 > JAVASCRIPT match()
JAVASCRIPT match()
定义和用法
match() 方法可在字符串中搜索指定的值,或与正则表达式的匹配的值。
语法
- 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()
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。