using System.Text.RegularExpressions;
public static void Main()
string[] flame = new string[] {
"他奶奶", "他奶奶的", "他奶娘的", "他妈", "他妈ㄉ王八蛋", "他妈地", "他妈的", "他娘", "他马的", "你个傻比", "你他马的"
foreach (string item in source) {
Regex regex = new Regex("^(?!/[somemagic]?)" + string.Join("|\\b", flame), RegexOptions.IgnoreCase);
Match match = regex.Match(item);
Console.WriteLine(item + " success.");