Je veux utiliser C # pour vérifier si une valeur de chaîne contient un mot dans un tableau de chaînes. Par exemple,
string stringToCheck = "text1text2text3";
string[] stringArray = ("text1", etc... )
if(stringToCheck.contains stringArray( //one of the items?
{
}
Comment puis-je vérifier si la valeur de chaîne pour 'stringToCheck' contient un mot dans le tableau de chaînes?
Merci,