Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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's left into a string array of 50 character pieces.

I have this so far

var commentTxt = new string[] { };
var cmtTb = GridView1.Rows[rowIndex].FindControl("txtComments") as TextBox;
if (cmtTb != null)
  commentTxt = cmtTb.Text.Length > 50
      ? new[] {cmtTb.Text.Substring(0, 50), cmtTb.Text.Substring(51)}
      : new[] {cmtTb.Text};

It works ok, but I am not stripping out the CrLf characters. How do I do this correctly?

Thanks, ~ck in San Diego

share|improve this question

5 Answers

You could use a regex, yes, but a simple string.Replace() will probably suffice.

 myString = myString.Replace("\r\n", string.Empty);
share|improve this answer
15  
Better might be myString.Replace("\r", string.Empty).Replace("\n", string.Empty);, given that strings in the wild can have lots of CR/LF arrangements. – Craig Stuntz Dec 30 '09 at 19:44
Would it not be better to use Enviroment.Newline ??? – PostMan Dec 30 '09 at 19:50
2  
Environment.NewLine would be the server's idea of what a new line is. This text is coming from the client, which may use different characters for newlines. Here is an answer that shows what different browsers use for new lines: stackoverflow.com/questions/1155678/… – Matt Greer Dec 30 '09 at 19:59
Good point, never thought of that. – PostMan Dec 30 '09 at 20:08

This splits the string on any combo of new line characters and joins them with a space, assuming you actually do want the space where the new lines would have been.

var oldString = "the quick brown\rfox jumped over\nthe box\r\nand landed on some rocks.";
var newString = string.Join(" ", Regex.Split(oldString, @"(?:\r\n|\n|\r)"));
Console.Write(newString);

// prints:
// the quick brown fox jumped over the box and landed on some rocks.
share|improve this answer
The Better Choice... ever! – Paulo Diogo Jan 16 at 10:50

.Trim() function will do all the work for you!

I was trying the code above but after the "trim" function, and I noticed its all "clean" even before it reaches the replace code!

String input:       "This is an example string.\r\n\r\n"
Trim method result: "This is an example string."

Source : http://www.dotnetperls.com/trim

share|improve this answer

Nicer code for this:

yourstring = yourstring.Replace(System.Environment.NewLine, string.Empty);
share|improve this answer
THANX..it Worked – Dhaval Patel Oct 30 '12 at 8:54

Assuming you want to replace the newlines with something so that something like this:

the quick brown fox\r\n
jumped over the lazy dog\r\n

doesn't end up like this:

the quick brown foxjumped over the lazy dog

I'd do something like this:

string[] SplitIntoChunks(string text, int size)
{
    string[] chunk = new string[(text.Length / size) + 1];
    int chunkIdx = 0;
    for (int offset = 0; offset < text.Length; offset += size)
    {
        chunk[chunkIdx++] = text.Substring(offset, size);
    }
    return chunk;
}    

string[] GetComments()
{
    var cmtTb = GridView1.Rows[rowIndex].FindControl("txtComments") as TextBox; 
    if (cmtTb == null)
    {
        return new string[] {};
    }

    // I assume you don't want to run the text of the two lines together?
    var text = cmtTb.Text.Replace(Environment.Newline, " ");
    return SplitIntoChunks(text, 50);    
}

I apologize if the syntax isn't perfect; I'm not on a machine with C# available right now.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.