Skip to content

Instantly share code, notes, and snippets.

@gmoraiz
Last active December 23, 2019 16:48
Show Gist options
  • Save gmoraiz/fd291a97e0f0586195c49312d79c8ee3 to your computer and use it in GitHub Desktop.
Save gmoraiz/fd291a97e0f0586195c49312d79c8ee3 to your computer and use it in GitHub Desktop.
dart regex to get username and hashtag like twitter
void main() {
RegExp exp = new RegExp(r"([#,@][^\s#\@]*)");
String str = "#😍Parse@my@@#string#string2###eaeae#ça#12351faf";
Iterable<RegExpMatch> matches = exp.allMatches(str);
matches.map((x) => x[0]).forEach((m) => print(m));
}
@boucoding
Copy link

thanks you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment