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

What is the difference between

alert("abc".substr(0,2));

and

alert("abc".substring(0,2));

They both seem to output “ab”.

share|improve this question
1  
There seems to be no reason to use substring at this time. Use slice instead. – Derek 朕會功夫 Jul 8 '12 at 22:49

3 Answers

up vote 56 down vote accepted

The difference is in the second argument. The second argument to substring is the index to stop at (but not include), but the second argument to substr is the maximum length to return.

Links?

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/substr

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/substring

share|improve this answer
8  
Sounds like a common source of error. Good to know the difference. Found additional comments about this here: rapd.wordpress.com/2007/07/12/javascript-substr-vs-substring – schnaader Sep 19 '10 at 11:46

The first takes parameters as (from, length).
The second takes parameters as (from, to).

alert("abc".substr(1,2)); // returns "bc"
alert("abc".substring(1,2)); // returns "b"

Resources :

share|improve this answer
17  
Oh no, w3fools. – Derek 朕會功夫 Jul 8 '12 at 22:50
5  
@Derek Oh no, the w3fools site. The site that attacks w3schools for not wikifying their content or making it easy to submit corrections, yet itself provides no way to submit corrections to its own erroneous content. – Fletch Jan 28 at 11:30
@Fletch - Hm, that's a good point. – Derek 朕會功夫 Jan 29 at 2:45
1  
@Fletch don't you know w3fools is on Github? github.com/paulirish/w3fools – barraponto Feb 8 at 14:14
2  
@barraponto Aha! They should note that on the site. – Fletch Feb 8 at 14:17

Another gotcha I recently came across is that in IE 8, "abcd".substr(-1) erroneously returns "abcd", whereas Firefox 3.6 returns "d" as it should. slice works correctly on both.

More on this topic can be found here.

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.