Uncheck "Minimal Match" in the search options. That option changes the default greediness of many operators.
It won't affect this particular search, but you also might want to make \W \w (and the like) unicode aware with (*UCP) if you have non-ascii characters in strings that you're trying to match word boundaries.
Last edited by DiapDealer; 03-08-2019 at 10:06 AM.
|