首页 > 其他 > 详细

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

时间:2017-11-11 12:17:09      阅读:262      评论:0      收藏:0      [点我收藏+]

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') 有两种方式

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!