Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to check whether a word starts with a particular substring ignoring the case differences. I have been doing this check using the following regex search pattern but that does not help when there is difference in case across the strings.

my case sensitive way:

var searchPattern = new RegExp('^' + query);
if (searchPattern.test(stringToCheck)) {}
share|improve this question

3 Answers

up vote 2 down vote accepted

Pass the i modifier as second argument:

new RegExp('^' + query, 'i');

Have a look at the documentation for more information.

share|improve this answer
1  
Thanks for the quick answer! Will accept as soon as SO permits! – user01 Feb 20 at 11:28

You don't need a regular expression at all, just compare the strings:

if (stringToCheck.substr(0, query.length).toUpperCase() == query.toUpperCase())

Demo: http://jsfiddle.net/Guffa/AMD7V/

This also handles cases where you would need to escape characters to make the RegExp solution work, for example if query="4*5?" which would always match everything otherwise.

share|improve this answer
is this method more performant than regex search ? – user01 Feb 20 at 11:31
2  
@user01: Yes, I tested this in the three browsers that I have installed, and it's faster in all of them: jsperf.com/regex-vs-compare – Guffa Feb 20 at 11:36
+1 & thanks. I would going with this solution but as for the question asked about the regex, I should accept the answer acc to that. – user01 Feb 20 at 11:45

In this page you can see that modifiers can be added as second parameter. In your case you're are looking for 'i' (Canse insensitive)

//Syntax
var patt=new RegExp(pattern,modifiers);

//or more simply:

var patt=/pattern/modifiers;
share|improve this answer
Don't recommend w3schools.com. See w3fools.com why. – Marcel Korpel Feb 20 at 11:27
@MarcelKorpel done.. I just switched with other I saw in Google. Thanks! – SERPRO Feb 20 at 11:36

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.