How can I check if one string contains another substring in JavaScript?

Usually I would expect a String.contains() method, but there doesn't seem to be one.

Edit: thanks for all the answers :) However, it seems that I have another problem :(

When I use the ".indexof" method, Firefox refuses to start the JavaScript code (this is for an extension).

My code is:

var allLinks = content.document.getElementsByTagName("a");

for (var i=0, il=allLinks.length; i<il; i++) {
    elm = allLinks[i];
    var test = elm.getAttribute("class");
    if (test.indexof("title") !=-1) {
        alert(elm);
        foundLinks++;
    }
}

if (foundLinks === 0) {
    alert("No title class found");
} 
else {
    alert("Found " + foundLinks + " title class");
}

Firefox doesn't display an alert box. This works if I get rid of the .indexof() method. I already tried something like if (test=="title")..., but it didn't work.

link

65% accept rate
32  
Probably worth pointing out that you're using indexof above and not indexOf – tschaible Nov 24 '09 at 13:33
2  
Yeah thanks, it also didn't help. I finally discovered the Error console, it helped also. – gramm Nov 24 '09 at 14:34
feedback

9 Answers

up vote 749 down vote accepted
var s = "foo";
alert(s.indexOf("oo") != -1);

indexOf returns the position of the string in the other string. If not found, it will return -1.

https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Objects/String/indexOf

link
21  
you should be using !== fyi. – Steve May 26 '11 at 19:29
21  
> would save a byte :) – Steve Jun 6 '11 at 22:39
74  
@Steve indexOf always returns a number so there’s no need to use !==. If you want to save bytes, you could use ~'foo'.indexOf('oo') which returns a truthy value if the substring is found, and a falsy value (0) if it isn’t. – Mathias Bynens Jul 7 '11 at 11:00
38  
For the curious: in two's compliment systems, -1 is represented in binary as all 1s (1111 1111 1111 1111 1111 1111 1111 1111 for 32 bit). The bitwise inverse (~) of this is all zeros, or just zero, and therefore falsy. That's why the squiggle trick works, and it is pretty bad-ass if I must say so myself. – Adam Tolley Sep 14 '11 at 21:36
96  
Writing code that is unreadable because it's full of tricks isn't "bad ass" so much as just "bad". – boxed Dec 23 '11 at 8:45
show 6 more comments
feedback

I know your question is already answered, but I thought this might be helpful too.

You can easily add a contains method to String with this statement:

String.prototype.contains = function(it) { return this.indexOf(it) != -1; };

Note: see the comments below for a valid argument for not using this. My advice: use your own judgement.

link
6  
Don't modify objects you don't own. nczonline.net/blog/2010/03/02/… – zachleat Feb 17 '11 at 19:59
3  
@zachleat, that understandable in practice. But "foobar".contains("bar") would be a really useful exception to the rule. – nathan.f77 Feb 22 '11 at 9:50
12  
Eh, my preference would be to adapt my mental model to fit JavaScript and just use indexOf. It will make the code easier to understand for the next JavaScripter that comes along and has to read it. – zachleat Mar 4 '11 at 16:03
4  
if (typeof String.prototype.contains === 'undefined') { String.prototype.contains = function(it) { return this.indexOf(it) != -1; }; } – Pavel Hodek Jun 7 '11 at 15:24
5  
I this it is preferrable to use this function if you are going to be using this kind of indexOf's frequently. @zachleat, I would disagree that using indexOf is more readable than contains. Contains describes what is happening, where to some indexOf() != -1 may not be so transparent. But to each their own, as long as you're consistant. – smdrager Jul 11 '11 at 14:03
show 3 more comments
feedback

The problem with your code is that Javascript is case sensitive. Your method call

indexof()

should actually be

indexOf()

Try fixing it and see if that helps:

if (test.indexOf("title") !=-1) {
    alert(elm);
    foundLinks++;
}
link
feedback

You could use the JavaScript search() method.

Syntax is: string.search(regexp)

It returns the position of the match, or -1 if no match is found.

See examples there: jsref_search

You don't need a complicated regular expression syntax. If you are not familiar with them a simple st.search("title") will do. If you want your test to be case insensitive, then you should do st.search(/title/i).

link
4  
This seems like it would be slower than the indexOf function because it would have to parse the RegEx. However, if you want something case insensitive, your way would be the way to go (I think), although that was not what was asked. Even though it wasn't asked, I'm voting this up just because of the case insensitive option. – PiPeep Jun 3 '10 at 22:21
3  
I haven't run a benchmark, but would str.toLowerCase().indexOf(searchstr.toLowerCase()) be much more efficient for case-insensitive search? – Tim S. Jan 31 at 10:29
feedback
var index = haystack.indexOf(needle);
link
feedback

You can use jQuery's ':contains' selector.

$("div:contains('John')")

check it here: http://api.jquery.com/contains-selector/

link
feedback

You need to call indexOf with a capital "O" as mentioned. It should also be noted, that in JavaScript class is a reserved word, you need to use className to get this data attribute. The reason it's probably failing is because it's returning a null value. You can do the following to get your class value...

var test = elm.getAttribute("className");
//or
var test = elm.className
link
feedback

This just worked for me. It selects for strings that do not contain the term "Deleted:"

if (eventString.indexOf("Deleted:") == -1)
link
6  
This question was already answered fully in 2009, there was no need to post this. – jli Oct 21 '11 at 17:16
feedback

Use regular expression

RegExp.test(string)

link
11  
Using a regex is a little overhead to only check for the presence of a substring. – Fabian Vilers Nov 24 '09 at 13:55
feedback

Your Answer

 
or
required, but never shown

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