Looking for whole words #13022
-
In the search dialog there's an option to search for the exact term, this will search for strings with the search term only, which means: "target:=term" will only find strings with term as translation, but what if I want to search for a whole word as part of a string? I thought about using regex and word boundaries but it doesn't work: target:r"בחר\b", I'm not sure how should I achieve this, thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
StoyanDimitrov
Nov 18, 2024
Replies: 1 comment 3 replies
-
What about |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
yarons
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What about
target:r"[[:<:]]בחר[[:>:]]"
?