码迷,mamicode.com
首页 > Web开发 > 详细

JS 正则表达式转换字符串

时间:2019-09-21 12:20:38      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:def   js 正则   表达式   ons   code   log   一个   class   第一个   

获取第一个.前面的字符串,以及后面的字符串:

const transform = str => {
  str.replace(/([^\.]*)\.(.*)/, function($0, $1,$2){
    // $0是匹配的完整的字符串
    console.log($1,":", $2);
  });
}
transform("abc.def.ghi")
// abc:def.ghi

或者

const transform = str => {
  str.replace(/(.*)(?:\.)(.*)/, function ($0, $1, $2) {
    console.log($1, ":", $2);
  });
}

JS 正则表达式转换字符串

标签:def   js 正则   表达式   ons   code   log   一个   class   第一个   

原文地址:https://www.cnblogs.com/flipped/p/11562214.html

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