我想替换所有出现的字符串,如:
"{something1}
"{someother2}
"{thing3}
但如何处理包含字符串的组,而不是字符?
- 编辑:
e.g。给定字符串:
sometext "{something1}hello
我想
sometext hello
或更好,但它只有replaceAll参数
sometext "hello
答案 0 :(得分:3)
答案 1 :(得分:1)
使用组内的|
运算符构建正则表达式。
答案 2 :(得分:1)
您可以使用或'|'运算符匹配完整的字符串 -
subject.replace(/something1|someother2|thing3/g, ",");