标签: java regex
我有像
'(123-inf]\\\\\' '\\\'\(12.3-430-1]\\\' '\\\'\(inf-12.23)\\\\' '123-123.3]
如何移除(之前的任何内容 - 包括(以及)或]后面的任何内容 - 包括两个字符。
(
)
]
答案 0 :(得分:0)
使用replaceAll
replaceAll
string.replaceAll("^.*\\(|[)\\]].*", "");