在很多聊天中,会有许多表情,这些表情都是类似”[微笑]”的这种,然后写了一个正则表达式,保留在这里,便于以后使用中.这里的提取支持提取中文.在node.js 6.10.2下运行通过.
let testStr = "now [里斯本] [test002] [ddddd] [adfasd][3234]";
function getFaceTag(message) {
let re = /\[([\u4e00-\u9fa5\w]+)\]/g;
let r = {fulltag:[],tags:[]};
let m;
while(m = re.exec(message)) {
r.fulltag.push(m[0]);
r.tags.push(m[1]);
}
return r;
}
let k = getFaceTag(testStr);
console.log(k);