码迷,mamicode.com
首页 > 其他好文 > 详细

String.match(正则 或 'string') 有两种方式

时间:2017-11-11 13:18:11      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:string   match   eth   method   方式   aaa   turn   null   空格   

method1:

‘1aaa2bb3‘.match(/\d/g) //return : [1,2,3]

method2:

‘1aaa2bb3 hello world‘.match(‘world ‘) //return null,是因为后面有个空格所以返回null

‘1aaa2bb3 hello world‘.match(‘world‘) //return world

String.match(正则 或 'string') 有两种方式

标签:string   match   eth   method   方式   aaa   turn   null   空格   

原文地址:http://www.cnblogs.com/tangchangcai/p/7818595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!