Be careful while using ‘replaceAll’ and ‘replaceFirst’ methods of String class in Java
Posted by Anay on October 27, 2008
0 comments
Most of the time, while trying to replace a substring in a given string, either all its occurrences or just the first one, java programmers tend to use ‘replaceAll’ and ‘replaceFirst’ methods provided by String class in Java. Java programmers like to use these methods to replace substrings as compared to ‘replace’ method of String [...]