如何删除字符串中的括号字符(java)
我想使用java删除字符串中所有类型的括号字符(例如:[],(),{})。
我尝试使用此代码:
String test = "watching tv (at home)";
test = test.replaceAll("(","");
test = test.replaceAll(")","");
但它不起作用,请帮帮我。
我想使用java删除字符串中所有类型的括号字符(例如:[],(),{})。
我尝试使用此代码:
String test = "watching tv (at home)";
test = test.replaceAll("(","");
test = test.replaceAll(")","");
但它不起作用,请帮帮我。
要删除包含所有括号,大括号和方括号的所有标点符号...根据问题是:
String test = "watching tv (at home)";
test = test.replaceAll("\\p{P}","");