标签: javascript regex
有一个字符串:
"*this* not that"
我可以选择 * this *
\*(.*?)\*
但我不能只获得这个。
我想要实现的是用一个新字符串替换-this-。最简单的方法是什么?
答案 0 :(得分:1)
你可以尝试:
"*this* not that".replace(/\*.*\*/,'*new_string*'); //"*new_string* not that"