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 check if a string ends with a particular character in javascript? example I have a string say var str = "mystring#"; I want to know if that string str is ending with "#". How can I check it?

  1. is there a endsWith() method in javascript?

  2. one solution I have is take the length of the string and get the last character and check it.

Is this the best way or there is any other way?

share|improve this question
6  
Don't stop at the accepted answer. Much better solution is one below it stackoverflow.com/a/2548133/639505 – Andrew Aug 14 '12 at 16:07
1  
This has got to be a related question: stackoverflow.com/questions/646628/javascript-startswith – Hamish Grubijan Jan 29 at 17:42

14 Answers

up vote 556 down vote accepted

I know this is a year old question... but I need this too and I need it to work cross-browser so... combining everyone's answer and comments and simplify it a bit:

String.prototype.endsWith = function(suffix) {
    return this.indexOf(suffix, this.length - suffix.length) !== -1;
};
  • Doesn't create a substring
  • Uses native indexOf function for fastest results
  • Skip unnecessary comparisons using the second parameter of indexOf to skip ahead
  • Works in Internet Explorer
  • NO Regex complications

Also, if you don't like stuffing things in native data structure's prototypes, here's a standalone version:

function endsWith(str, suffix) {
    return str.indexOf(suffix, str.length - suffix.length) !== -1;
}

EDIT: As noted by @hamish in the comments, if you want to err on the safe side and check if an implementation has already been provided, you can just adds a typeof check like so:

if (typeof String.prototype.endsWith !== 'function') {
    String.prototype.endsWith = function(suffix) {
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
}
share|improve this answer
38  
best answer here – Darcy Mar 16 '11 at 19:57
2  
Thanks! Simple and effective. – jjnguy Apr 20 '11 at 16:15
1  
Excellent answer – Bohemian May 19 '11 at 1:16
2  
Perfectly clean and simple. Nice answer. – csigrist Aug 16 '12 at 16:55
1  
@MohamedNuur it will return false (correctly) regardless of what index it gets since the suffix is not contained in the source string. – chakrit Aug 22 '12 at 7:02
show 7 more comments
/#$/.test(str)

will work on all browsers, doesn't require monkey patching String, and doesn't require scanning the entire string as lastIndexOf does when there is no match.

If you want to match a constant string that might contain regular expression special characters, such as '$', then you can use the following:

function makeSuffixRegExp(suffix, caseInsensitive) {
  return new RegExp(
      String(suffix).replace(/[$%()*+.?\[\\\]{|}]/g, "\\$&") + "$",
      caseInsensitive ? "i" : "");
}

and then you can use it like this

makeSuffixRegExp("a[complicated]*suffix*").test(str)
share|improve this answer
4  
This is nice and simple if you're checking for a constant substring. – Warren Blanchet May 21 '09 at 22:50
1  
lastIndexOf scans all the string? I thought it would search from the end to the beggining. – Tom Brito Apr 19 '11 at 16:45
and what's the explanation? If I want to find the pattern "asdf" can I use /asdf$/.test(str)? – Tom Brito Apr 19 '11 at 16:47
1  
@TomBrito, lastIndexOf scans the entire string only if it finds no match, or finds a match at the beginning. If there is a match at the end then it does work proportional to the length of the suffix. Yes, /asdf$/.test(str) yields true when str ends with "asdf". – Mike Samuel Apr 19 '11 at 16:59
2  
@Tom Brito, It's a regular expression literal. The syntax is borrowed from Perl. See developer.mozilla.org/en/Core_JavaScript_1.5_Guide/… or for an unnecessary level of detail, see section 7.8.5 of the EcmaScript language specification. – Mike Samuel Apr 20 '11 at 16:21
show 5 more comments
  1. Unfortunately not.
  2. if( "mystring#".substr(-1) === "#" ) {}
share|improve this answer
34  
This wouldn't work in Internet Explorer though. – Anthony Aug 24 '09 at 9:32
9  
@Anthony, um... so use .Length-1, what's the problem? if (mystring.substr(mystring.length-1) === "#") {} works just fine in IE. – BrainSlugs83 Sep 20 '11 at 22:47
10  
@BrainSlugs83 - that's exactly the problem: the '.length-1' syntax works in IE, and the '-1' syntax doesn't. It's something to bear in mind, so +1 to Anthony for the tip. – egasimus Nov 13 '11 at 18:11
1  
Couldn't you use slice()? It works for me in my quick IE7 test. – alex Feb 8 '12 at 23:00
3  
mystring[mystring.length-1] === '#' . works in any browser – ferronrsmith Feb 26 '12 at 7:49

Come on, this is the correct endsWith implementation:

String.prototype.endsWith = function (s) {
  return this.length >= s.length && this.substr(this.length - s.length) == s;
}

using lastIndexOf just creates unnecessary CPU loops if there is no match.

share|improve this answer
1  
Agreed. I really feel like this is the most performant solution offered as it has early aborts/sanity checking, it's short and concise, it's elegant (overloading the string prototype) and substring seems like much less of a resource hit than spinning up the regex engine. – BrainSlugs83 Sep 20 '11 at 22:52
Also like this solution. Just the function name is mispelled. Should be "endsWith". – xmedeko Oct 12 '11 at 12:23
1  
@BrainSlugs83 It's been a couple of years, but now this method is no faster than the 'indexOf' method mentioned above by chakrit, and under Safari, it is 30% slower! Here is a jsPerf test for the failure case over about a 50-character string: jsperf.com/endswithcomparison – Rubistro Dec 5 '11 at 23:28

This version avoids creating a substring, and doesn't use regular expressions (some regex answers here will work; others are broken):

String.prototype.endsWith = function(str)
{
    var lastIndex = this.lastIndexOf(str);
    return (lastIndex != -1) && (lastIndex + str.length == this.length);
}

If performance is important to you, it would be worth testing whether lastIndexOf is actually faster than creating a substring or not. (It may well depend on the JS engine you're using...) It may well be faster in the matching case, and when the string is small - but when the string is huge it needs to look back through the whole thing even though we don't really care :(

For checking a single character, finding the length and then using charAt is probably the best way.

share|improve this answer
If this.lastIndexOf() returns -1, you can hit cases where it returns true dependong on this.length and str.length. Add a test that lastIndexOf() != -1. – ebruchez Mar 24 '09 at 18:44
Good catch, thanks. – Jon Skeet Mar 24 '09 at 19:20
Downvoters: Care to explain why you've downvoted? – Jon Skeet Mar 24 '09 at 20:40
Why is the regex method broken? – izb Sep 2 '10 at 14:22
2  
@izb: The answers which are older than mine which try to use str+"$" as a regex are broken, as they may not be valid regexes. – Jon Skeet Sep 2 '10 at 14:37
return this.lastIndexOf(str) + str.length == this.length;

does not work in the case where original string length is one less than search string length and the search string is not found:

lastIndexOf returns -1, then you add search string length and you are left with the original string's length.

A possible fix is

return this.length >= str.length && this.lastIndexOf(str) + str.length == this.length
share|improve this answer
2  
jon skeet smackdown! – nickf Mar 4 '09 at 16:02
9  
You have earned the “Found a mistake in a Jon Skeet answer” badge. See your profile for details. – bobince Mar 4 '09 at 16:08
String.prototype.endsWith = function(str) 
{return (this.match(str+"$")==str)}

String.prototype.startsWith = function(str) 
{return (this.match("^"+str)==str)}

I hope this helps

var myStr = “  Earth is a beautiful planet  ”;
var myStr2 = myStr.trim();  
//==“Earth is a beautiful planet”;

if (myStr2.startsWith(“Earth”)) // returns TRUE

if (myStr2.endsWith(“planet”)) // returns TRUE

if (myStr.startsWith(“Earth”)) 
// returns FALSE due to the leading spaces…

if (myStr.endsWith(“planet”)) 
// returns FALSE due to trailing spaces…

the traditional way

function strStartsWith(str, prefix) {
    return str.indexOf(prefix) === 0;
}

function strEndsWith(str, suffix) {
    return str.match(suffix+"$")==suffix;
}
share|improve this answer
You have to escape your string for regex escape sequences – Juan Mendes Apr 23 at 15:41
if( ("mystring#").substr(-1,1) == '#' )

-- Or --

if( ("mystring#").match(/#$/) )
share|improve this answer

A way to future proof and/or prevent overwriting of existing prototype would be test check to see if it has already been added to the String prototype. Here's my take on the non-regex highly rated version.

if (typeof String.endsWith !== 'function') {
    String.prototype.endsWith = function (suffix) {
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
}
share|improve this answer
Using if (!String.prototype.hasOwnProperty("endsWith")) is the best way. With typeof, "MooTools and some of the other AJAX libraries will screw you up", according to "Crockford on JavaScript - Level 7: ECMAScript 5: The New Parts", at 15:50 min. – XP1 Jan 11 '12 at 9:42
String.prototype.endWith = function (a) {
    var isExp = a.constructor.name === "RegExp",
    val = this;
    if (isExp === false) {
        a = escape(a);
        val = escape(val);
    } else
        a = a.toString().replace(/(^\/)|(\/$)/g, "");
    return eval("/" + a + "$/.test(val)");
}

// example
var str = "Hello";
alert(str.endWith("lo"));
alert(str.endWith(/l(o|a)/));
share|improve this answer

all of them are very useful examples. Adding String.prototype.endsWith = function(str) will help us to simply call the method to check if our string ends with it or not, well regexp will also do it.

I found a better solution than mine. Thanks every one.

share|improve this answer
function check(str)
{
    var lastIndex = str.lastIndexOf('/');
    return (lastIndex != -1) && (lastIndex  == (str.length - 1));
}
share|improve this answer

if you dont want to use lasIndexOf or substr then why not just look at the string in its natural state (ie. an array)

String.prototype.endsWith = function(suffix) {
    if (this[this.length - 1] == suffix) return true;
    return false;
}

or as a standalone function

function strEndsWith(str,suffix) {
    if (str[str.length - 1] == suffix) return true;
    return false;
}
share|improve this answer

I don't know about you, but:

var s = "mystring#";
s.length >= 1 && s[s.length - 1] == '#'; // will do the thing!

Why regular expressions? Why messing with the prototype? substr? c'mon...

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.