lowerCaseCount method

int lowerCaseCount()

Returns the number of lowercase characters in the string.

Implementation

int lowerCaseCount() {
  return replaceAll(RegExp(r'[^a-z]'), '').length;
}