lowerCaseRegStr top-level property
A regular expression pattern that matches strings containing only lowercase letters (a–z).
This pattern ensures that the entire string consists of one or more lowercase English alphabet characters with no uppercase letters, digits, symbols, or whitespace.
Implementation
String lowerCaseRegStr = r'^[a-z]+$';