Replace line breaks with spaces

Hi, mavens,
I hope there's a simple answer to this question: Is there a way to replace all line breaks in a column with spaces?
Thanks.
Nany

Hi, have you tried value.replace(/\n/," ")
This should replace all line breaks (\n in regex) with a space character. The two "/" in the search part of .replace mark a regular expression.

Thanks, Michael! I don't speak regex.
Nancy