I am trying to replace " " with a new line in visual basic using regular expressions.
I tried to find: ([\s]*)("")
and replace with: \n\n.
However, in my text
is replaced but with "\n\n", not two physical new lines.
I also tried to replace it with \r\r, but it does the same.