I am doing it like this :
String test = "watching tv (at home)";
test = test.replaceAll("(","");
test = test.replaceAll(")","");
But its not working . Suggest me a solution please.
String test = "watching tv (at home)";
test = test.replaceAll("(","");
test = test.replaceAll(")","");
test = test.replaceAll("[\\[\\](){}]","");