int P_scalar = 0; Regex P_regex = new Regex("^[\u4E00-\u9FA5]{0,}$"); for(int i = 0;i < txt_str.Text.Length; i++) { P_scalar = P_regex.IsMatch(txt_str.Text[i].ToString()) ? ++P_scalar : P_scalar; } MessageBox.Show(P_scalar.ToString(), "title");
using System.Text.RegularExpressions;
时间: 2024-10-16 20:48:29