我需要找到符合我需要的正则表达式。
假设我有字符串:
one, two, three, #four, five
我想在上面拆分文字并忽略 #four ,所以我希望字符串像吐:
one, two, three, five
我非常感谢您的任何帮助:)
答案 0 :(得分:1)
你不需要正则表达式只需拆分并过滤并最终加入:
var str = "one, two, three, #four, five";
var result = str.split(",").filter(elem => !elem.includes("#")).join(",");
console.log(result); // one, two, three, five