About 9,390,000 results
Open links in new tab
  1. 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 "search" string …

  2. 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.

  3. Case insensitive regular expression without re.compile?

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

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

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

  5. How do I make my string comparison case-insensitive?

    Feb 8, 2010 · String.equalsIgnoreCase is the most practical choice for naive case-insensitive string comparison. However, it is good to be aware that this method does neither do full case folding nor …

  6. Case Insensitive String Comparison in C - Stack Overflow

    Case Insensitive String Comparison in C Asked 14 years, 7 months ago Modified 1 year ago Viewed 258k times

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

    How to make '.Contains (string)' case insensitive Asked 16 years, 11 months ago Modified 1 month ago Viewed 1.3m times

  8. 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.

  9. Are class names in CSS selectors case sensitive? - Stack Overflow

    CSS selectors are generally case-insensitive; this includes class and ID selectors. But HTML class names are case-sensitive (see the attribute definition), and that's causing a mismatch in your second …

  10. Case insensitive access for generic dictionary - Stack Overflow

    Nov 5, 2012 · I have an application that use managed dlls. One of those dlls return a generic dictionary: Dictionary<string, int> MyDictionary; The dictionary contains keys with upper and lower case. ...