Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,023 questions

51,974 answers

573 users

How to perform a case-insensitive search in C#

2 Answers

0 votes
using System;
 
class Program
{
    static void Main()
    {
        string str = "The FOX Profession is C# Programmer";
        string toFind = "fox";
 
        bool contains = str.IndexOf(toFind, StringComparison.OrdinalIgnoreCase) >= 0;
         
        Console.WriteLine(contains); 
    }
}
 
 
 
/*
run:
 
True
 
*/

 



answered Feb 23, 2025 by avibootz
edited Feb 23, 2025 by avibootz
0 votes
using System;
using System.Text.RegularExpressions;
 
class Program
{
    static void Main()
    {
        string str = "The FOX Profession is C# Programmer";
        string pattern = "fox";
 
        bool contains = Regex.IsMatch(str, pattern, RegexOptions.IgnoreCase);
         
        Console.WriteLine(contains); 
    }
}
 
 
 
/*
run:
 
True
 
*/

 



answered Feb 23, 2025 by avibootz
edited Feb 23, 2025 by avibootz

Related questions

1 answer 67 views
1 answer 81 views
1 answer 85 views
1 answer 87 views
1 answer 125 views
1 answer 62 views
2 answers 91 views
...