reAsciiWord top-level property
Used to match words composed of alphanumeric characters.
Implementation
final reAsciiWord = RegExp(r"[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+");
Used to match words composed of alphanumeric characters.
final reAsciiWord = RegExp(r"[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+");