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 88 views
1 answer 104 views
1 answer 105 views
1 answer 112 views
1 answer 176 views
1 answer 85 views
2 answers 118 views
...