vote up 3 vote down star
1

Hi everybody, I'm trying to get a case-insensitive Search with two String in JavaScript working.

Normally it would be like this:

var string="Stackoverflow is the BEST";
var result= string.search(/best/i);
alert(result);

The /i flag would be for case-insensitive.

But I need to search for a second string, without the flag it works perfect:

var string="Stackoverflow is the BEST";
var searchstring="best";
var result= string.search(searchstring);
alert(result);

If i add the /i flag to the above example it would search for searchstring and not for what is in the variable "searchstring"(next example not working):

var string="Stackoverflow is the BEST";
var searchstring="best";
var result= string.search(/searchstring/i);
alert(result);

Would be nice if someone could tell me how I can achieve this.

Chris

flag

3 Answers

vote up 10 vote down check

Yeah, use .match, rather than .search. The result from the .match call will return the actual string that was matched itself, but it can still be used as a boolean value.

var string = "Stackoverflow is the BEST";
var result = string.match(/best/i);
// result == 'BEST';

if (result){
    alert('Matched');
}

Using a regular expression like that is probably the tidiest and most obvious way to do that in JavaScript, but bear in mind it is a regular expression, and thus can contain regex metacharacters. If you want to take the string from elsewhere (eg, user input), or if you want to avoid having to escape a lot of metacharacters, then you're probably best using indexOf like this:

matchString = 'best';
// If the match string is coming from user input you could do
// matchString = userInput.toLowerCase() here.

if (string.toLowerCase().indexOf(matchString) != -1){
    alert('Matched');
}
link|flag
What if matchString has value of "bEst"? The proper case-insensitive search should still find the occurrence. In your case you would probably also need to call toLowerCase() on the search term as well. – Sergey Ilinsky Oct 7 '08 at 9:42
I added a comment to reflect that fact, thanks. – Dan Oct 7 '08 at 10:06
vote up 0 vote down

If you're just searching for a string rather than a more complicated regular expression, you can use indexOf() - but remember to lowercase both strings first because indexOf is case sensitive:

var string="Stackoverflow is the BEST"; 
var searchstring="best";

// lowercase both strings
var lcString=string.toLowerCase();
var lcSearchString=searchstring.toLowerCase();

var result = lcString.indexOf(lcSearchString)>=0;
alert(result);

Or in a single line:

var result = string.toLowerCase().indexOf(searchstring.toLowerCase())>=0;
link|flag
vote up 4 vote down

var result= string.search(/searchstring/i);

replace with:

var result= string.search(new RegExp(searchstring, "i"));

link|flag
That's a rather messy way around it, as it takes to measures to guard against unexpected regexp metacharacters. – Dan Oct 7 '08 at 10:42
Dan, I doubt my answer deserves -1 from you. I tried helping ChrisBo by correcting his improper usage of JavaScript, namely: var result= string.search(/searchstring/i); to a proper one, where variable searchstring was used the way he intended. – Sergey Ilinsky Oct 7 '08 at 10:51

Your Answer

Get an OpenID
or

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