I\'ve been trying to figure out how to replace commas with line-breaks. I\'ve tried using (/r/n/)
, char(10)
, the Unicode representation (can\'t rem
This response doesn't specifically answer the original question, but it is a similar use-case that I found which may help someone else. If you are searching for a newline character with other text and you want your replace to keep the newline character, here's one way you can do it.
My example searches for newline plus space and then replaces it with just a new line.
Find: (\n)\s
Replace: $1
It would be nice if google allowed regex in the replace field, but this might help someone if the newline character is part of the search parameters and needs to be included in the replace portion.
NOTE: Per Google's documentation, replace groups only work with Sheets. (as of July 13, 2017)