public bool Check() { string input = "你好,世界!"; string pattern = @"H.ll. W.rld!"; // 真正 return Regex.IsMatch(input, pattern); }