This is more of a case of just letting everyone know as to prevent head butting against the wall and going back through RegEx books.
I was trying to replace a load of commas with newlines via the find/replace using regex a task I thought was simple:
Find: "," Replace with: "\n"
All that happend was an "n" being inserted. I tried"
Find: "," Replace with: "\\n"
This inserted "\n".