If I have:
Some text
More text
Even more text
What is the more elegant way to obtain:
Some text
More text
Even more text
All with knowing the number of repeated tokens
|
|
|||||||||
|
|
|
The method to do so using regular expressions would be
(The |
||
|
|
|
|
Use regular expressions. Match the entire string '\r\n' and replace with a single '\r\n' The function you need:
EDIT: Apologies for missing the + earlier |
||||
|
|
|
Perhaps something like:
|
||||
|
|
|
I don't know C# syntax, but just use a simple regex to replace (\r\n)+ with (\r\n) |
||
|
|
|
|
You can use a regular expression:
Another way could be to split on the line breaks removing empty entries, then join again:
Consider if you should use the string literal |
||
|
|
|
|
If the \r\n means what it usually does, you're replacing successive blank lines with a single blank line. I'm sure there are tools for that purpose. I wouldn't know about C#, though. |
||
|
|
|
|
Without Regexs (which make my head hurt)
|
||||
|
|
|
The fastest way:
|
||
|
|
|
|
Just a few days ago, there was nearly the same question around here in SO. There was not a NewLine the problem, instead it where whitespaces. There was also the one guys who prefers the Split, Join method and the other site using a regex. So Jon made a comparison between both and it came out that a compile regex was much faster. But i just can't find this question again... |
||
|
|