在验证用户输入字符长度的时候,系统默认统计字符是按照个数来统计的,而实际一个汉字要以2字节计算,否则存入数据库的时候数据过多就会出现错误!
/// <summary> /// 获取指定字符串长度,汉字以2字节计算 /// </summary> /// <param name="str">要统计的字符串</param> /// <returns>返回字符串长度</returns> private static int GetLength1(String str) { byte[] strText = System.Text.Encoding.Default.GetBytes(str); return strText.Length; }
/// <summary> /// 获取指定字符串长度,汉字以2字节计算 /// </summary> /// <param name="str">要统计的字符串</param> /// <returns>返回字符串长度</returns> private static int GetLength(String str) { int Length = str.Length; char[] chars = str.ToCharArray(); for (int i = 0; i < chars.Length; i++) { if (System.Convert.ToInt32(chars[i]) > 255) { Length++; } } return Length; } /// <summary> /// 得到字符串的长度,一个汉字算2个字符 ///</summary> /// <param name="str">字符串</param> /// <returns>返回字符串长度</returns> public static int GetLength(string str) { if (str.Length == 0) return 0; ASCIIEncoding ascii = new ASCIIEncoding(); int Length = 0; byte[] s = ascii.GetBytes(str); for (int i = 0; i < s.Length; i++) { if ((int)s[i] == 63) { Length += 2; } else { Length += 1; } } return Length; }
作者:Crazy Ma 出处:http://www.cnblogs.com/intcry ♪:30%的技术+70%的精神,帮助别人得到他想要的,你就能得到你想要的! ♪