当前位置:   article > 正文

javaScript提取双花括号内字符串_js获取字符串大括号里的内容

js获取字符串大括号里的内容

javaScript提取双花括号内字符串

已有的字符串如下:

var sourceStr = "{{in.type.thrustType@/template/总体设计/算法2/}}+{{in.type.thrustType@/template/总体设计/算法2/}}";
  • 1

为了提取双花括号与其内部字符串,需要使用match成员函数

var regex = /\{\{(.+?)\}\}/g;
var patternArray = sourceStr.match(regex);
console.log(patternArray);
  • 1
  • 2
  • 3

输出为一个数组

[ '{{in.type.thrustType@/template/总体设计/算法2/}}',
  '{{in.type.thrustType@/template/总体设计/算法2/}}' ]
  • 1
  • 2

如果希望去除大括号,提取大括号的字符串,可以使用slice成员函数

var content = patternArray[0].slice(2, pattern.length - 2).trim();
  • 1

输出为一个字符串

in.type.thrustType@/template/总体设计/算法2/
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/174064
推荐阅读
相关标签
  

闽ICP备14008679号