Is there stock standard function that does newline to <br /> encoding in ASP.Net MVC?
| ||||
|
feedback
|
|
There is now:
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... | |||||||
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:
| |||||
feedback
|
|
All these answers are quite correct, but you should do a | |||
|
feedback
|
|
What about something along the lines of:
Here's the function signature from the PHP documention:
The PHP function also appends a newline after the break tag. | |||
|
feedback
|