ConstThis regex is ASCII-only and does NOT support Unicode letters. For Unicode support, consider using: IS_ALPHA_UNICODE_REGEX
Pattern:
^ → start of string[a-zA-Z] → ASCII letters only+ → one or more characters$ → end of string
Matches if a string contains only alphabetic characters (A–Z, a–z).