Please fix the restricted keyword feature
complete
Alejandro Lozdziejski
You are right Hiền Lâm. As our filter triggers every time there is a new letter added on the text field, as soon as there is an M typed, our filter will detect it as a restricted keyword and delete it. We'll implement a delay so it works as you expect it. Thanks for letting us know
Alejandro Lozdziejski
complete
Can be achieved using current functionality
Alejandro Lozdziejski
Please use \bEM\ as the regexp:
Here's a breakdown of this regular expression:
\b is a word boundary anchor. It asserts a position at the start or end of a word.
EM is the literal string we want to match.
\b again asserts a position at the end of the word.
This pattern ensures that "EM" is matched only when it is a whole word, such as in "EM 2024", but not when it is part of another word, such as "Emily" or "Emma".
H
Hiền Lâm
Alejandro Lozdziejski Thank you for your reply, but unfortunately, whether it’s \bEM\ or \bEM\b, it’s still not working.
When I use \bEM: I can type EM or anything including EM.
When I use \bEM\b: I type E M and they disappear. Apparently, I don’t have any chance to type Emily or Emma because the characters will be gone when I type the second character.