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

How can I read the line break from a value with Javascript and replace all the line breaks with br tags?

Example:

A variable passed from PHP as below:

  "This is man.

     Man like dog.
     Man like to drink.

     Man is the king."

I would like my result to look something like this after the Javascript converts it:

  "This is man<br /><br />Man like dog.<br />Man like to drink.<br /><br />Man is the king."
share|improve this question
Something wrong with your original question? stackoverflow.com/questions/784313/… – harto Apr 24 '09 at 4:42
You could also do nl2br($string) in PHP before you send it to JavaScript. – alex Apr 24 '09 at 4:44
I'm going to vote to close the earlier question, as this has a better example. – eyelidlessness Apr 24 '09 at 4:48
He should edit the initial question then – nickf Apr 24 '09 at 4:48

4 Answers

up vote 97 down vote accepted
str = str.replace(/\n/g, '<br />');
share|improve this answer
Thanks, was quite helpful. – Anvar Sep 7 '11 at 4:06
1  
Just additional note: str.replace("\n", '<br />') (first argument is a regular string) will replace only first occurrence. – SergeanT Apr 15 at 20:49
1  
Another version (to replace multiple line-breaks): str.replace(/(\n)+/g, '<br />'); – Ritesh Apr 16 at 16:30

Without regex:

str = str.split("\n").join("<br />");
share|improve this answer
If you do "\\n" you'll avoid issues with splitting on just the "n". – CrowderSoup Aug 2 '12 at 19:19
1  
@CrowderSoup hmm? I just tried it and \\n doesn't match on a new line, because it's looking for backslash + n. – paulslater19 Aug 3 '12 at 8:04

If the accepted answer isn't working right for you then you might try.

str.replace(new RegExp('\n','g'), '<br />')

It worked for me.

share|improve this answer
new RegExp('\n', 'g') is identical to /\n/g (except for some minutiae about using primitive literals versus their constructors). – eyelidlessness Mar 10 at 9:37
1  
whatever the reason, this worked for me but the accepted answer didn't – nick Mar 13 at 9:08
Ah, same here... but my mistake was attempting to specify /\n/g as a string! – Daniel Fortunov Mar 15 at 15:26

It is also important to encode the rest of the text in order to protect from possible script injection attacks

function insertTextWithLineBreaks(text, targetElement) {
    var textWithNormalizedLineBreaks = text.replace('\r\n', '\n');
    var textParts = textWithNormalizedLineBreaks.split('\n');

    for (var i = 0; i < textParts.length; i++) {
        targetElement.appendChild(document.createTextNode(textParts[i]));
        if (i < textParts.length - 1) {
            targetElement.appendChild(document.createElement('br'));
        }
    }
}
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.