AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
在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 } ~~~