0

Regex - :\s|,\s|,|\s|/|\\|\&|\$|"|%
Also tried [:\s,\s,\s/\\\&\$"%] with the same results.

I have marked replacement characters for a visual view to make sure.

enter image description here

1 Answers1

1

Because you are replacing \s with nothing. \s stands for any kind of white space, including linebreaks.

If you want to replace only horizontal spaces (i.e. space, tab) use \h.

Toto
  • 19,304