using System.Text.RegularExpressions;
public static void Main()
string industryTypeName = "其他 (地政士)";
MatchCollection matches = Regex.Matches(industryTypeName, @"\((?<result>[\u4e00-\u9fa5\w]+)\)", RegexOptions.IgnoreCase);
string result = string.Empty;
Console.WriteLine(matches.Count);
foreach (Match match in matches)
result = match.Groups["result"].Value;
result = industryTypeName.Substring(0, 7);
Console.WriteLine(result);