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

link|improve this question
don't use regex if you are looking for \r\n since new lines are actually specially handled. – DevelopingChris Aug 27 '09 at 13:00
1  
Do you actually have "\r\n" literals in your string or do you have newlines? – Andrew Hare Aug 27 '09 at 13:03
Judging by the accepted answer it seems clear that you have newlines rather than literal "\r\n" strings in your input. – Andrew Hare Aug 27 '09 at 13:33
feedback

9 Answers

up vote 5 down vote accepted

The method to do so using regular expressions would be

string replaced = System.Text.RegularExpressions.Regex
    .Replace(input, @"(?:\r\n)+", "\r\n");

(The (?:...) syntax is a non-capturing group, which can be replaced with a capturing group (just (...)), but that is slightly less efficient and not more readable, IMO.)

link|improve this answer
feedback

Perhaps something like:

var result = string.Join("\r\n", s.Split(new[]{"\r\n"}, StringSplitOptions.RemoveEmptyEntries))
link|improve this answer
I like this one better than regex, its clever, and declarative. – DevelopingChris Aug 27 '09 at 12:59
This one is far more wordy, and with such a simple regex, how is this more declarative? The regex version is almost literally "replace every repeated instance of \r\n with a single instance of \r\n". – Sean Aug 27 '09 at 13:08
feedback

Use regular expressions. Match the entire string '\r\n' and replace with a single '\r\n'

The function you need:

pattern = "(\\r\\n)+";
Regex rgx = new Regex(pattern);

newString = rgx.Replace(oldString, "\r\n");

EDIT: Apologies for missing the + earlier

link|improve this answer
1  
not sure this works since it would replace every new line with a new line, not condense them. you need a plus in your pattern – DevelopingChris Aug 27 '09 at 13:05
feedback

I don't know C# syntax, but just use a simple regex to replace (\r\n)+ with (\r\n)

link|improve this answer
feedback

Without Regexs (which make my head hurt)

    string RemoveRepeated(string needle, string haystack)
    {
        string doubleNeedle = needle + needle;

        while (haystack.IndexOf(doubleNeedle) >= 0)
            haystack = haystack.Replace(doubleNeedle, needle);
        return haystack;
    }
link|improve this answer
As strings are immutable in C#, the above is actually an infinite loop if the string contains a doubleNeedle. – Bojan Resnik Aug 27 '09 at 13:04
@Bojan: Yes, I posted it before I tested it, now corrected :) – Binary Worrier Aug 27 '09 at 13:06
feedback

You can use a regular expression:

str = Regex.Replace(str, "(\r\n)+", "\r\n")

Another way could be to split on the line breaks removing empty entries, then join again:

str = String.Join("\r\n", str.Split(new string[]{"\r\n"}, StringSplitOptions.RemoveEmptyEntries);

Consider if you should use the string literal "\r\n" or the Environment.NewLine constant. That depends on where the data comes from.

link|improve this answer
feedback

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.

link|improve this answer
feedback

The fastest way:

Regex reg = new Regex(@"(\r\n)+");

string replacedString = reg.Replace("YOUR STRING TO BE REPLACED", Environment.NewLine);
link|improve this answer
feedback

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...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown