Closed Amber916Young closed 3 months ago
@Amber916Young can you describe the issue better and perhaps include some code to reproduce your issue?
Hi, Thank you for your prompt response. When I input #hello, the widget correctly detects the keyword "hello". However, if I input #尼hello, it seems fails to extract the tag "尼hello".
This is probably because of the default regex pattern for allowed search characters (^[a-zA-Z-]*$'
) which only includes letters of the English alphabet. You can allow more characters by specifying searchRegex
for the FlutterTagger
widget.
yes, I just noticed that parameter, anyway, thanks for replying!
Anytime!
Closing this issue now since it is resolved. Please re-open if you still have related issues.
The English text is working, but other languages cannot be detected.