2013年4月18日 星期四

判別中文字數

private void button1_Click(object sender, EventArgs e)
{
    byte[] byteStr = Encoding.GetEncoding("big5").GetBytes(textBox1.Text); //把string轉為byte
    label1.Text = byteStr.Length.ToString(); //取byte的長度, 中文字就會算2碼了
}

沒有留言:

張貼留言