vote up 0 vote down star

Is \n the universal newline character sequence in Javascript for all platforms? If not, how do I determine the character for the current environment?

I'm not asking about the HTML newline element (<BR/>). I'm asking about the newline character sequence used within JavaScript strings.

flag

65% accept rate
2  
What do you need that for? – Gumbo Jul 20 at 20:09
2  
js might be inconsistent across browsers, but it's not that bad. – geowa4 Jul 20 at 20:11
1  
I have a multiline input control where the user is expected to enter a newline separated list. I need to parse the list by first splitting the string on newlines. – landon9720 Jul 20 at 20:41

5 Answers

vote up 0 vote down

The \n is just fine for all cases I've encountered. I you are working with web, use \n and don't worry about it (unless you have had any newline-related issues).

link|flag
vote up 4 vote down

I've just tested a few browsers using this silly bit of JavaScript:

<!doctype html>
<script>
function bar(){
    baz = document.getElementById('foo').value;
    alert((baz.match(/\r/) && 'CR') + ' ' + (baz.match(/\n/) && 'LF'));
    document.getElementById('foo').value = "foo\nbar";
}
</script>
<body onload="bar()">
<form><textarea id="foo" name="foo">

</textarea>
<input type="submit">
</form>
</body>

IE8 and Opera 9 on Windows use \r\n. All the other browsers I tested (Safari 4 and Firefox 3.5 on Windows, and Firefox 3.0 on Linux) use \n. They can all handle \n just fine when setting the value, though IE and Opera will convert that back to \r\n again internally. There's a SitePoint article with some more details called Line endings in Javascript.

Note also that this is independent of the actual line endings in the HTML file itself (both \n and \r\n give the same results).

When submitting the form, all browsers canonicalize newlines to \r\n (%0D%0A in URL encoding).

I don't think you really need to do much of any determining, though. If you just want to split the text on newlines, you could do something like this:

lines = foo.value.split(/\r\n|\r|\n/);
link|flag
vote up 0 vote down

I believe it is -- when you are working with JS strings.

If you are generating HTML, though, you will have to use <br /> tags (not \n, as you're not dealing with JS anymore)

link|flag
vote up 1 vote down

yes use \n, unless you are generating html code, in which you want to use <br>

link|flag
vote up 5 vote down

Yes, it is universal.

Although '\n' is the universal newline characters, you have to keep in mind that, depending on your input, new line characters might be preceded by carriage return characters ('\r').

link|flag
2  
easy layup on this one – Saul Dolgin Jul 20 at 20:10
1  
\n is the universal line feed character (LF). The exact newline byte sequence depends on the platform (\r\n, \n, or \r: en.wikipedia.org/wiki/Newline). And that's the question landon is asking. You're contradicting yourself when you first say it's the universal newline character, and then say it may be preceded by a CR. Which one is it? – mercator Jul 20 at 20:23

Your Answer

Get an OpenID
or

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