Quote:
Originally Posted by jackie_w
...
A Regex search for \s will match both a normal space and an \xa0 (and other 'whitespace' chars for that matter, e.g. newline). If you only want to search for '2 or more consecutive normal spaces' then perhaps a regex search for
would be better than \s\s (there's a normal space between those square-brackets)
|
Brief interim report: Regex functions! And we see once again differences of
occurences #3.
Replaced 1117 occurrences of [ ]{2,}