July 2017
Intermediate to advanced
158 pages
3h 41m
English
This method replaces each substring of the subject string that matches the given regular expression with the replacement String. As the name implies, replaceAll replaces all the matching occurrences of the input String. Note that we can also supply a simple String containing no regex meta character in the first argument.
Calling this method is equivalent to a call to the following:
Pattern.compile(regex).matcher(input).replaceAll(replacement);
The replacement string allows the use of references to substrings, represented by the captured groups ...
Read now
Unlock full access