How do I check if a string contains a specific word? c# code example
Example 1: 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!");
}
}
}
Example 2: check if string is in string[] c#
string stringToCheck = "text1";
string[] stringArray = { "text1", "testtest", "test1test2", "test2text1" };
foreach (string x in stringArray)
{
if (x == stringToCheck)
{
// Process...
}
}