If my string is:
E_77 78
and my regex search is:
\d+
or
[0123456789]+
the search will find the '78' but not the '77' as part of E_77. AFAICS a regex search should find a sequence of 1 or more digits no matter where it is in a string when I specify either of the above.
This is my mistake. Please ignore. I forgot that the whole word search was on.