145

I want to extract a query string from my URL using JavaScript, and I want to do a case insensitive comparison for the query string name. Here is what I am doing:

var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href);
if (!results) { return 0; }
return results[1] || 0;

But the above code does a case sensitive search. I tried /<regex>/i but it did not help. Any idea how can that be achieved?

Ninjakannon
  • 3,751
  • 7
  • 53
  • 76
Amit
  • 25,106
  • 25
  • 75
  • 116
  • 6
    That literal format **/regex/i** should work, unless you tried to concatenate it or something... – Alex Oct 25 '14 at 15:40

5 Answers5

241

You can add 'i' modifier that means "ignore case"

var results = new RegExp('[\\?&]' + name + '=([^&#]*)', 'i').exec(window.location.href);
Michał Niklas
  • 53,067
  • 18
  • 70
  • 114
50

modifiers are given as the second parameter:

new RegExp('[\\?&]' + name + '=([^&#]*)', "i")
Brad Mace
  • 27,194
  • 17
  • 102
  • 148
9

Simple one liner. In the example below it replaces every vowel with an X.

function replaceWithRegex(str, regex, replaceWith) {
  return str.replace(regex, replaceWith);
}

replaceWithRegex('HEllo there', /[aeiou]/gi, 'X'); //"HXllX thXrX"
Diego Fortes
  • 8,830
  • 3
  • 32
  • 42
8

For example to search word date, upper or lowercase you need to add param i

i = means incasesensitive

example

const value = "some text with dAtE";
/date/i.test(value)

or

const value = "some text with dAtE";
 new RegExp("/date/","i");
dawid debinski
  • 392
  • 4
  • 6
4

Just an alternative suggestion: when you find yourself reaching for "case insensitive regex", you can usually accomplish the same by just manipulating the case of the strings you are comparing:

const foo = 'HellO, WoRlD!';
const isFoo = 'hello, world!';
return foo.toLowerCase() === isFoo.toLowerCase();

I would also call this easier to read and grok the author's intent!

mecampbellsoup
  • 1,260
  • 18
  • 16