标签:ar sp for bs amp nbsp c har 如何
public int calStrLen(string Str)
{
int i=0;
if(Str==null)
{
return i;
}
else
{
foreach(char c in Str)
{
if(c>0x4e00&&c<=0x9fa5)
{
i++;
}
i++;
}
return i;
}
}
标签:ar sp for bs amp nbsp c har 如何
原文地址:http://www.cnblogs.com/zhenfeng/p/4093395.html