You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current search and replace functionality helps a lot when translating some strings. It would be even more powerful if users could further specify search queries using regular expressions.
This would be very useful, for example when you want to replace whole words, but not words that merely contain the search string:
Regex often offers \b as an option to delimit strings as words. The regular expression \bexam\b would therefore find a match in custom exam questions:, but not in see this example:.
I'm sure that also offering a regex search for the search-and-replace feature would have even more use cases than the one I've described. Users with regex knowledge could greatly profit from it and refine their search results to those that they've envisioned.
The text was updated successfully, but these errors were encountered:
@m-rey
Probably I'm stupid, but I can't understand the real point in this issue? Can I have a more simplified example. The, definitely, I'll have a look. And, extremely sorry for the delayed response. Thank you.
The current search and replace functionality helps a lot when translating some strings. It would be even more powerful if users could further specify search queries using regular expressions.
This would be very useful, for example when you want to replace whole words, but not words that merely contain the search string:
Regex often offers
\b
as an option to delimit strings as words. The regular expression\bexam\b
would therefore find a match incustom exam questions:
, but not insee this example:
.I'm sure that also offering a regex search for the search-and-replace feature would have even more use cases than the one I've described. Users with regex knowledge could greatly profit from it and refine their search results to those that they've envisioned.
The text was updated successfully, but these errors were encountered: