C#计算字符串的长度String类型的字符,⽤length来获取长度是不区分中⽂和英⽂的
我们按中⽂两个字符,英⽂⼀个字符来计算String字符的长度:
public static int StrLength(string inputString)
{
System.Text.ASCIIEncoding ascii = new System.Text.ASCIIEncoding();
int tempLen = 0;
byte[] s = ascii.GetBytes(inputString);
for (int i = 0; i < s.Length; i++)
{
if ((int)s[i] == 63)
tempLen += 2;
字符串长度怎么判断
else
tempLen += 1;
}
return tempLen;
}
此⽂转载⾃。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。