Is it possible to have the contain function find if the string contains 2 words or more? This is what I\'m trying to do:
string d = \"You hit someone for 50
public static bool In(this string str, params string[] p) { foreach (var s in p) { if (str.Contains(s)) return true; } return false; }