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

Regex 提取字符串中重复数据且格式化显示

时间:2019-09-03 12:05:34      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:regex   turn   字符串   格式   $2   重复数   replace   info   style   

方法:用   $下标    提取满足项的值

  /**
   * 餐食信息格式转换
   * @早餐,1@晚餐,2  =》  早餐(1份);晚餐(2份)
   */
  convertMealInfo = (mealInfo) => {
    if(mealInfo){
      return mealInfo.replace(/\@([\u4e00-\u9fa5]+)[,,]([0-9]+)/g,‘$1($2份);‘)
    }
    return ‘‘
  }

调用

convertMealInfo(‘@早餐,1@晚餐,2‘)

 

Regex 提取字符串中重复数据且格式化显示

标签:regex   turn   字符串   格式   $2   重复数   replace   info   style   

原文地址:https://www.cnblogs.com/Cailf/p/11451842.html

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