主要记录一些正则表达式
匹配指定格式中的中文
var reg = /(?<=prompt:.*)([\u4e00-\u9fa5]+)(?=.*,)/g //断言用法
"prompt: '请选择商品编码' ,searcher:function(){xxx[商品编码]}".match(reg); //匹配到 请选择商品编码
匹配特殊[]
var patt = /(?<=\[).+?(?=\])|(?<=\().+?(?=\))/g;
"操作失败,单号[0001]中(0002)不存在".replace(patt,'8888');
// 结果 操作失败,单号[8888]中(8888)不存在
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。