I need to split a string into newlines in .NET and the only way i know of to split strings is with the Split method. However that will not allow me to (easily) split on a newline, so what is the best way to do it?
|
|
To split on a string you need to use the overload that takes an array of strings:
Edit:
|
|||||||||||||||||||
|
|
You should be able to split your string pretty easily, like so:
|
|||||||||||||||||
|
|
Based on Guffa's answer, in an extension class, use:
|
|||
|
|
|
well, actually split should do:
|
|||||||
|
The RemoveEmptyStrings option will make sure you don't have empty entries due to \n following a \r (Edit to reflect comments:) Note that it will also discard genuine empty lines in the text. This is usually what I want but it might not be your requirement. |
||||
|
What about using a
|
|||
|
|
|
Regex is also an option:
|
|||||
|
|
For a string variable
This uses your environment's definition of line endings. On Windows, line endings are CR-LF (carriage return, line feed) or in C#'s escape characters This is a reliable solution, because if you recombine the lines with
What not to do:
|
||||
|
|
|
I did not know about Environment.Newline, but I guess this is a very good solution. My try would have been:
The additional .Trim removes any \r or \n that might be still present (e. g. when on windows but splitting a string with os x newline characters). Probably not the fastest method though. EDIT: As the comments correctly pointed out, this also removes any whitespace at the start of the line or before the new line feed. If you need to preserve that whitespace, use one of the other options. |
|||||||||||
|
|
Silly answer: write to a temporary file so you can use the venerable
|
||||
|
|
|
I'm currently using this function (based on other answers) in VB.NET:
It tries to split on the platform-local newline first, and then falls back to each possible newline. I've only needed this inside one class so far. If that changes, I will probably make this Here's how to join the lines back up, for good measure:
|
|||
|
|