I would like to take a string from a widget and remove the line feed so the resultant string is all on one line. I have played with the string functions but can’t quite figure it out. Any help would be appreciated.
Example:
A widget contains the following text with two strings on two lines:
String
Another String
I would like to convert that text to the following:
String, Another String
Essentially removing the line feed and replacing it with a comma.
Thanks in advance.