I have my comment fields formatted with multiple lines and it's a tremendous pain to deal with in other applications, so what I'd like to do is convert all the comment fields to a single line that is comma delimited. My multi-line setup is formatted like so:
Line1,
Line2,
Line3
Note that there is a space after every comma.
At first I figured that I could simply use a regex, but I can't seem to figure out how to get the regex interpreter to recognize a \n. More to the point, I'm not entirely sure if the return after the comma space is a \r or a \n.
Is there a way to actually do what I'm trying to do?


