reHasUnicodeWord top-level property

RegExp reHasUnicodeWord
final

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 ]");