replaceAllToLowerCase method

String replaceAllToLowerCase(
  1. Pattern pattern,
  2. String replace
)

Replaces all occurrences of the given pattern with the specified replacement and returns the result in lowercase.

Implementation

String replaceAllToLowerCase(Pattern pattern, String replace) {
  return replaceAll(pattern, replace).toLowerCase();
}