About 22,900,000 results
Open links in new tab
  1. Regex: ignore case sensitivity - Stack Overflow

    Mar 11, 2012 · How can I make the following regex ignore case sensitivity? It should match all the correct characters but ignore whether they are lower or uppercase. G[a-b].*

  2. Case insensitive regex in JavaScript - Stack Overflow

    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 …

  3. Can you make just part of a regex case-insensitive?

    Perl lets you make part of your regular expression case-insensitive by using the (?i:) pattern modifier. Modern regex flavors allow you to apply modifiers to only part of the regular expression.

  4. Case insensitive regular expression without re.compile?

    In Python, I can compile a regular expression to be case-insensitive using re.compile:

  5. How to do case insensitive search in Vim - Stack Overflow

    I like to add set ignorecase for case-insensitive searching in my vimrc, and I can use \C to do a case-sensitive search similar to what @AlokSinghal mentioned.

  6. Is HTML case sensitive? - Stack Overflow

    Generally, HTML is case-insensitive, but there are a few exceptions. Entity names (the things that follow ampersands) are case-senstive, but many browsers will accept many of them entirely in …

  7. How to do case insensitive string comparison? - Stack Overflow

    7 There are two ways for case insensitive comparison: Convert strings to upper case and then compare them using the strict operator (===). Pattern matching using string methods: Use the …

  8. Case-insensitive string comparison in C++ - Stack Overflow

    What is the best way of doing case-insensitive string comparison in C++ without transforming a string to all uppercase or all lowercase? Please indicate whether the methods are Unicode …

  9. mysql - SQL SELECT LIKE (Insensitive casing) - Stack Overflow

    SQL SELECT LIKE (Insensitive casing) Asked 12 years, 3 months ago Modified 3 years, 2 months ago Viewed 131k times

  10. How to make '.Contains(string)' case insensitive - Stack Overflow

    How to make '.Contains (string)' case insensitive Asked 17 years ago Modified 2 months ago Viewed 1.3m times