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 find a word in a string in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            string s = "c# programming is nice";

            if (s.Contains("programming"))
                Console.WriteLine("Found"); // Found
            else
                Console.WriteLine("NOT Found");

            string s1 = "c#";

            if (s.Contains(s1))
                Console.WriteLine("Found"); // Found
            else
                Console.WriteLine("NOT Found");

            if (s.Contains("pro"))
                Console.WriteLine("Found"); // Found
            else
                Console.WriteLine("NOT Found");

            if (s.Contains("PROGRAMMING"))
                Console.WriteLine("Found");
            else
                Console.WriteLine("NOT Found"); // NOT Found

            if (s.IndexOf("programming") >= 0)
                Console.WriteLine("Found"); // Found
            else
                Console.WriteLine("NOT Found");
            
            if (s.IndexOf("PROGRAMMING", StringComparison.OrdinalIgnoreCase) >= 0)
                Console.WriteLine("Found"); // Found
            else
                Console.WriteLine("NOT Found");

        }
    }
}

/*

run:

Found
Found
Found
NOT Found
Found
Found
  
*/



answered Oct 27, 2014 by avibootz

Related questions

1 answer 79 views
1 answer 66 views
66 views asked Jul 30, 2023 by avibootz
1 answer 148 views
1 answer 104 views
1 answer 120 views
...