For accessing individual characters of a String in Java, we have String.charAt(2).. But is there any inbuilt function to remove individual character of a String in java ??
if(String.charAt(1) == String.charAt(2){
//I want to remove the individual character at 2, so that index at 3 becomes 2
}
coupleofsubstringandindexOf. But that will create a new string object. – Rohit Jain Nov 14 '12 at 19:44