Skip to content

Instantly share code, notes, and snippets.

@f3ath
Created April 26, 2023 03:21
Show Gist options
  • Save f3ath/12a57b51d41d8ca228bb7be05126121d to your computer and use it in GitHub Desktop.
Save f3ath/12a57b51d41d8ca228bb7be05126121d to your computer and use it in GitHub Desktop.
Dart RegExp character class and surrogate pairs CLI vs Web
void main() {
print(RegExp(r'a[^x]b', unicode: true).hasMatch('a\uD800\uDD01b')); // true in Web, false in CLI
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment