使用C#实现DHT磁力搜索的BT种子后端管理程序+数据库设计(开源

2020-01-06 13:10:34王冬梅
  •     {  
  •         string pattern = @"[uac00-ud7ff]+";//判断韩语     
  •         Match usermatch = Regex.Match(title, pattern, RegexOptions.IgnoreCase);  
  •         if (usermatch.Groups.Count >= 1 && usermatch.Groups[0].Value.Length >= 1)  
  •             return 0;  
  •   
  •         pattern = @"[u0800-u4e00]+";//判断日语     
  •         usermatch = Regex.Match(title, pattern, RegexOptions.IgnoreCase);  
  •         if (usermatch.Groups.Count >= 1 && usermatch.Groups[0].Value.Length >= 1)