vote up 5 vote down star

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?

flag

60% accept rate

9 Answers

vote up 6 vote down check
  1. Unfortunately not.
  2. if( "mystring#".substr(-1) === "#" ) {}
link|flag
1  
This wouldn't work in Internet Explorer though. – Anthony Aug 24 at 9:32
vote up 5 vote down
/#$/.test(str)

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

link|flag
This is nice and simple if you're checking for a constant substring. – Warren Blanchet May 21 at 22:50
vote up 2 vote down
if( ("mystring#").substr(-1,1) == '#' )

-- Or --

if( ("mystring#").match(/#$/) )
link|flag
vote up 2 vote down

Come on, this is the correct endsWith implementation:

String.prototype.endsWidth = 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.

link|flag
vote up 1 vote down
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
link|flag
jon skeet smackdown! – nickf Mar 4 at 16:02
You have earned the “Found a mistake in a Jon Skeet answer” badge. See your profile for details. – bobince Mar 4 at 16:08
vote up 1 vote down

This version avoids creating a substring, and doesn't use the (broken) method of regular expression matching:

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.

link|flag
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 at 18:44
Good catch, thanks. – Jon Skeet Mar 24 at 19:20
Downvoters: Care to explain why you've downvoted? – Jon Skeet Mar 24 at 20:40
vote up 0 vote down

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.

link|flag
vote up -1 vote down

You can add one if you like:

String.prototype.endsWith = function(str)
{
    return (this.match(str+"$")==str)
}

alert("markmac".endsWith(“mac”));

Should do it...

link|flag
Doesn't that assume that the string doesn't use any regular expression elements itself? – Jon Skeet Nov 11 '08 at 11:26
For example, this prints false: alert("ab[x]".endsWith("[x]")); – Jon Skeet Nov 11 '08 at 11:50
Moreover, this fails for "30$".endsWith("$"), "123".endsWith(")"), etc. – Panos Nov 11 '08 at 11:52
this failed when "mystring$".endsWith("$"). it gave false – Bobby Kumar Nov 11 '08 at 12:04
Should be “return this.substring(this.length-str.length)==str”. Be careful when writing prototypes, if you are using non-standard names or broken implementations like this, you can easily confuse other code on the page. A standalone function is more reliable in mixed-code environments. – bobince Mar 4 at 16:04
vote up -2 vote down

There's nothing that a good piece of regexp and some prototype extension won't fix.

Include this in your script:

String.prototype.endsWith = function(str){return (this.match(str+"$")==str)}

After you include it you can use endsWith on any String.

link|flag
I was going to suggest something that wrapped .lastIndexOf(str) but your regex is much better. nice work! – scunliffe Nov 11 '08 at 11:39
As commented to Mark: this doesn't work if the string already includes regular expression elements. Try "ab[x]".endsWith("[x]") – Jon Skeet Nov 11 '08 at 11:51

Your Answer

Get an OpenID
or

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