Is there stock standard function that does newline to <br /> encoding in ASP.Net MVC?

link|improve this question

77% accept rate
feedback

5 Answers

up vote 3 down vote accepted

There is now:

public static class StockStandardFunctions
{
    public static string Nl2br(this string input)
    {
        return input.Nl2br(true);
    }

    public static string Nl2br(this string input, bool is_xhtml)
    {
        return input.Replace("\r\n", is_xhtml ? "<br />\r\n" : "<br>\r\n");
    }
}

Amended to follow the php spec for nl2br a little more closely (thanks Max for pointing that out). This still assumes \r\n new lines though...

link|improve this answer
It was my impression that nl2br was a lot more robust than this. I could be wrong, though. – Dan Tao Apr 29 '10 at 15:08
@Daniel: You spelled Standard wrong ;) – My Other Me Apr 30 '10 at 5:44
@myotherme: wish I could say that was intentional! (fixed) – Daniel Renshaw Apr 30 '10 at 7:47
feedback
mystring.Replace("\r\n","<br />");
link|improve this answer
feedback

I don't believe there's a 'stock standard function' to do this exactly the same as PHP's nl2br() function however the following will do the equivelant:

myString.Replace("\r\n", "<br />");
link|improve this answer
If one is very strict, this method call is clearly not "exactly the same" as phps nl2br. For a more detailed specification of what nl2br actually does, see: us3.php.net/nl2br - and thats not just for this answer, but for most of the answers so far. – Max Apr 29 '10 at 14:48
The question asks 'is there somethig like...' which is different from 'is there something exactly the same'. This solution is 'something like'. – Jamie Dixon Apr 29 '10 at 14:54
feedback

All these answers are quite correct, but you should do a mystring.Replace("\r?\n", "<br />"); to catch UNIX line endings as well, if your source (user input or db) might deliver that.

link|improve this answer
feedback

What about something along the lines of:

public static string Nl2br(string str)
{
    return Nl2br(str, true);
}

public static string Nl2br(string str, bool isXHTML)
{
    string brTag = "<br>";
    if (isXHTML) {
        brTag = "<br />";
    }
    return str.Replace("\r\n", brTag + "\r\n");
}

Here's the function signature from the PHP documention:

string nl2br ( string $string [, bool $is_xhtml = true ] )

The PHP function also appends a newline after the break tag.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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