multiByteRegStr top-level property

String multiByteRegStr
getter/setter pair

The pattern used to match non-ASCII characters.

[^\x00-\x7F] matches any character that is not between hex 00 and 7F (i.e., standard ASCII characters).

Pattern: [^\x00-\x7F]

Implementation

String multiByteRegStr = r'[^\x00-\x7F]';