Skip to content

Instantly share code, notes, and snippets.

@gasaichandesu
Created January 31, 2024 10:05
Show Gist options
  • Save gasaichandesu/b70027328ec84e82bb0e53ea3b60b31e to your computer and use it in GitHub Desktop.
Save gasaichandesu/b70027328ec84e82bb0e53ea3b60b31e to your computer and use it in GitHub Desktop.
void main() {
final re = RegExp(
r'\w',
unicode: true,
);
print(
re.hasMatch("ć"),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment