I am trying to find and replace all whitespace with nothing. I tried using regex \s to find whitespace but it doesn’t find anything. It just says “Unable to find \b\s\b”. Curiously, \S finds all the words and excludes all the whitespace.
Why does \S works but \s doesn’t?