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

正则表达式1

时间:2017-05-21 01:09:18      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:log   mat   reg   car   class   分享   .com   png   重复   

 

 

技术分享

 

 $ 表示寻找指定字符串的结尾的位置,\b 表示单词的边界例如:

 var reg4=/are$/g;
   var reg5=/are\b/g;

   var str="we are thinking that      that cars      are";
   console.log(str.match(reg4)); //["are"]
   console.log(str.match(reg5));  //["are", "are"]

 

技术分享

 

  反向引用查找重复的单词:

 

 var reg3=/([A-Za-z]+)\s+\1\b/g;
   var str="we are thinking that      that cars      are";
   console.log(str.match(reg3)); //["that      that"]

 

 

 

正则表达式1

标签:log   mat   reg   car   class   分享   .com   png   重复   

原文地址:http://www.cnblogs.com/web-fusheng/p/6883682.html

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