private void btn_GetCount_Click(object sender, EventArgs e)
{
int P_scalar = 0;//定義值類型變量並賦值爲0
Regex P_regex = //建立正則表達式對象,用於判斷字符是否爲漢字
new Regex("^[\u4E00-\u9FA5]{0,}$");
for (int i = 0; i < txt_str.Text.Length; i++)//遍歷字符串中每個字符
{
P_scalar = //若是檢查的字符是漢字則計數器加1
P_regex.IsMatch(txt_str.Text[i].
ToString()) ? ++P_scalar : P_scalar;
}
txt_count.Text = P_scalar.ToString();//顯示漢字數量
}正則表達式