Every now and then I try to remove a space or non-breaking space via a regex. Unfortunately it does not work in Studio. Why? It works in .Net. Can this be repaired?
Here is an example: I try to remove the space between +/- and a number (eg. + 23 % should be +23 %)
Regex: (?<!\d\s?)([\+-])\s(\d)
Replace with: $1$2