I want to replace some strings in a String input :
string=string.replace(\"\",\"\"); string=string.replac
StringBuilder is backed by a char array. So, unlike String instances, it is mutable. Thus, you can call indexOf() and replace() on the StringBuilder.
indexOf()
replace()
StringBuilder