replaceAllToUpperCase method
Replaces all occurrences of the given pattern with the specified replacement and returns the result in uppercase.
Implementation
String replaceAllToUpperCase(Pattern pattern, String replace) {
return replaceAll(pattern, replace).toUpperCase();
}