Answers for "how to check if string contains string c#"

C#
3

how to cjeck if a string has a word c#

using System;

public class Demo {
   public static void Main() {
      string s = "Together we can do so much!";
      if (s.Contains("much") == true) {
         Console.WriteLine("Word found!");
      } else {
         Console.WriteLine("Word not found!");
      }
   }
}
Posted by: Guest on May-08-2020
0

check if string is in string

string stringToCheck = "text1";
string[] stringArray = { "text1", "testtest", "test1test2", "test2text1" };
foreach (string x in stringArray)
{
    if (x == stringToCheck)
    {
        // Process...
    }
}
Posted by: Guest on January-01-1970

Code answers related to "how to check if string contains string c#"

C# Answers by Framework

Browse Popular Code Answers by Language