Skip to content

Commit

Permalink
last commit: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Medcell1 committed Aug 21, 2024
1 parent 29dcf60 commit 13924dc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/helpers/extract_tags.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ List<String> extractHashtags(String caption) {
.map((match) => match.group(0)!.substring(1))
.toList();
}

List<String> extractUserTags(String caption) {
final userTagRegExp = RegExp(r'\B@\w+');
return userTagRegExp
Expand Down

0 comments on commit 13924dc

Please sign in to comment.