I am trying to persist string from an ASP.NET textarea. I need to strip out the carriage return line feeds and then break up whatever is left into a string array of 50 chara
Nicer code for this:
yourstring = yourstring.Replace(System.Environment.NewLine, string.Empty);