santa112358/detectable_text_field

Doesn't detect consecutive hashtags

yakitama5 opened this issue · 0 comments

extractDetections() does not detect consecutive hashtags when the following character string exists.

final value = """
#example1
#example2 #example3
#example4#example5
""";
extractDetections(value, hashTagRegExp);
/// →["#example1", "exmaple2", "exmaple3", "exmaple4"]
/// "example5" is not detected