santa112358 / hashtagable

Widgets and functions to implement hashTag decorated text.
https://pub.dev/packages/hashtagable
MIT License
30 stars 50 forks source link

customize regular expression. #68

Closed hyobbb closed 3 years ago

hyobbb commented 3 years ago

Hello. I would like to detect hashtags that follow without spaces.

for example, if the text is '#hash#tag#search' I would like to extract #hash, #tag, #search. Not just #hash. so I want to delete this part of your regular expression (?:^|\s)

Is there any way to do that?

santa112358 commented 3 years ago

@hyobbb I'm sure detectable_text_field (https://pub.dev/packages/detectable_text_field) will help you. This is the refinement of hashtagable, which allows the developers to edit regular expression.

hyobbb commented 3 years ago

Thank you so much!

@hyobbb I'm sure detectable_text_field (https://pub.dev/packages/detectable_text_field) will help you. This is the refinement of hashtagable, which allows the developers to edit regular expression.

Thank you so much!