Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following:

    if (referrer.indexOf("Ral") == -1) { ...

What I like to do is to make Ral case insensitive, so that it can be RAl, rAl, etc. and still do the above code. Is there a way to say that Ral has to be case-insensitive?

share|improve this question

6 Answers

up vote 46 down vote accepted

Add .toLowerCase() after referrer. This method turns the string in a lower case string. Then, use .indexOf() using ral instead of Ral.

if (referrer.toLowerCase().indexOf("ral") === -1) { 

The same can also be achieved using a Regular Expression (especially useful when you want to test against dynamic patterns):

if (!/Ral/i.test(referrer)) {
   //    ^i = Ignore case flag for RegExp
share|improve this answer
5  
The latter method is more correct; the former will fail for the Turkish I and any other such problematic uppercase/lowercase pairs: i18nguy.com/unicode/turkish-i18n.html – Domenic Jan 24 '12 at 20:44
3  
For Turkish, it would be better to use toLocaleLowerCase() (ref) – Mottie Aug 13 '12 at 14:19

Use a RegExp:

if (!/ral/i.test(referrer)) {
    ...
}

Or, use .toLowerCase():

if (referrer.toLowerCase().indexOf("ral") == -1)
share|improve this answer
+1, this could potentially be more correct by avoiding the "Turkish I problem" and other such pitfalls: i18nguy.com/unicode/turkish-i18n.html – Domenic Jan 24 '12 at 20:43

There are a couple of approaches here.

If you want to perform a case-insensitive check for just this instance, do something like the following.

if (referrer.toLowerCase().indexOf("Ral".toLowerCase()) == -1) {
    ...

Alternatively, if you're performing this check regularly, you can add a new indexOf()-like method to String, but make it case insensitive.

String.prototype.indexOfInsensitive = function (s, b) {
    return this.toLowerCase().indexOf(s.toLowerCase(), b);
}

// Then invoke it
if (referrer.indexOfInsensitive("Ral") == -1) { ...
share|improve this answer
If you extend the prototype with a specific implementation of indexOf, don't forget about the optional second parameter: The starting position ('a a'.indexOf('a',1) === 2). – Rob W Jan 24 '12 at 20:45
@RobW Good call; amended. – cheeken Jan 24 '12 at 20:47
For modern browsers which support defineProperty, I suggest Object.defineProperty(String.prototype, 'indexOfInsensitive', {value: function(s,b){return this.toLowerCase().indexOf((s+'').toLowerCase(),b);}});. Two updates: Explicit string conversion using (s+''), and non-enumerable in a loop (for(var i in '') ... does not show indexOfInsensitive. – Rob W Jan 24 '12 at 20:52
if (referrer.toUpperCase().indexOf("RAL") == -1) { ...
share|improve this answer
-1, going to have problems with i18nguy.com/unicode/turkish-i18n.html – Domenic Jan 24 '12 at 20:43

To do a better search use the following code,

var myFav   = "javascript";
var theList = "VB.NET, C#, PHP, Python, JavaScript, and Ruby";

// Check for matches with the plain vanilla indexOf() method:
alert( theList.indexOf( myFav ) );

// Now check for matches in lower-cased strings:
alert( theList.toLowerCase().indexOf( myFav.toLowerCase() ) );

In the first alert(), JavaScript returned "-1" - in other words, indexOf() did not find a match: this is simply because "JavaScript" is in lowercase in the first string, and properly capitalized in the second. To perform case-insensitive searches with indexOf(), you can make both strings either uppercase or lowercase. This means that, as in the second alert(), JavaScript will only check for the occurrence of the string you are looking for, capitalization ignored.

Reference, http://freewebdesigntutorials.com/javaScriptTutorials/jsStringObject/indexOfMethod.htm

share|improve this answer

Another options is to use the search method as follow:

if (referrer.search(new RegExp("Ral", "i")) == -1) { ...

It looks more elegant then converting the whole string to lower case and it may be more efficient.
With toLowerCase() the code have two pass over the string, one pass is on the entire string to convert it to lower case and another is to look for the desired index.
With RegExp the code have one pass over the string which it looks to match the desired index.

Therefore, on long strings I recommend to use the RegExp version (I guess that on short strings this efficiency comes on the account of creating the RegExp object though)

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.