reHasUnicodeWord top-level property
Used to detect strings that need a more robust regexp to match words.
Implementation
final reHasUnicodeWord = RegExp(
r"[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]");
Used to detect strings that need a more robust regexp to match words.
final reHasUnicodeWord = RegExp(
r"[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]");