How can I replace a string in parentheses using a regex?

前端 未结 4 1053
春和景丽
春和景丽 2020-12-05 18:16

I have a string:

HLN (Formerly Headline News)

I want to remove everything inside the parens and the parens themselves, leaving only:

<
4条回答
  •  春和景丽
    2020-12-05 19:03

    String foo = "bar (baz)";
    String boz = foo.replaceAll("\\(.+\\)", ""); // or replaceFirst
    

    boz is now "bar "

提交回复
热议问题