About 50 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. How to do case insensitive search in Vim - Stack Overflow

    Apr 2, 2014 · 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-sensitive path collisions on case-insensitive file system when I ...

    Aug 19, 2020 · Your filesystem is probably case insensitive, so it does not have any way of distinguishing those two file names/paths. To your file system, abc and abC must refer to exactly the …

  4. 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 …

  5. javascript - Contains case insensitive - Stack Overflow

    Oct 2, 2012 · 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 …

  6. Case Insensitive String Comparison in C - Stack Overflow

    Case Insensitive String Comparison in C Asked 14 years, 8 months ago Modified 1 year, 1 month ago Viewed 259k times

  7. smtp - Are email addresses case sensitive? - Stack Overflow

    When you are developing mail software, you want to be RFC-compliant. You can make your own users' email addresses case insensitive if you want to (and you probably should). But in order to be RFC …

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

  9. File paths in Windows environment not case sensitive?

    Aug 26, 2011 · The underlying implementation of a network file system may be case sensitive, however, most software that allows Windows to access it (such as SMB) will automatically make case …

  10. python - Case insensitive replace - Stack Overflow

    May 28, 2009 · What's the easiest way to do a case-insensitive string replacement in Python?