多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
在javascript中正则 ~~~ var str = "Is is the cost of of gasoline going up up"; var patt1 = /\b([a-z]+) \1\b/ig; document.write(str.match(patt1)); ~~~ 在小程序中正则会使用一个函数getRegExp生成 regexp 对象 在小程序中正则部分用 "" 包含,而且它的两个转义字符相当于javascript中的一个转义字符 ~~~ function format(text){ if(text){ // 创建正则在全局中查找匹配项 var reg = getRegExp("\\\\n","g"); return text.replace(reg,"\n  &nbsp   "); } } module.exports = { format: format } ~~~