How can I replace Line Breaks within a string in C#?
|
|
|||||
|
|
|
Use replace with environment.newline
As mentioned in other posts, if the string comes from another environment (OS) then you'd need to replace that particular environments implementation of new line control characters. |
|||
|
|
|
If your code is supposed to run in different environments, I would consider using the Environment.NewLine constant, since it is specifically the newline used in the specific environment.
However, if you get the text from a file originating on another system, this might not be the correct answer, and you should replace with whatever newline constant is used on the other system. It will typically be \n or \r\n. |
|||
|
|
|
To extend The.Anyi.9's answer, you should also be aware of the different types of line break in general use. Dependent on where your file originated, you may want to look at making sure you catch all the alternatives...
should get you going... |
|||
|
|
|
|
I would use Environment.Newline when I wanted to insert a newline for a string, but not to remove all newlines from a string. Depending on your platform you can have different types of newlines, but even inside the same platform often different types of newlines are used. In particular when dealing with file formats and protocols.
|
|||
|
|
|
|
Don't forget that replace doesn't do the replacement in the string, but returns a new string with the characters replaced. The following will remove line breaks (not replace them). I'd use @Brian R. Bondy's method if replacing them with something else, perhaps wrapped as an extension method. Remember to check for null values first before calling Replace or the extension methods provided.
As extension methods:
|
|||
|
|
|
|
Use the .Replace() method
|
||
|
|
