將字串轉換為ASCII編碼數組,只要是中文位元組碼就是ASCII編碼63即"?",所以可以由此來進行判斷
class StringOP
{
///
/// 擷取中英文混排字串的實際長度(位元組數)
///
/// 要擷取長度的字串
/// 字串的實際長度值(位元組數)
public int getStringLength(string str)
{
if (str.Equals(string.Empty))
return 0;
int strlen = 0;
ASCIIEncoding strData = new ASCIIEncoding();
//將字串轉換為ASCII編碼的位元組數字
byte[] strBytes = strData.GetBytes(str);
for (int i = 0; i <= strBytes.Length - 1; i++)
{
if (strBytes[i] == 63) //中文都將編碼為ASCII編碼63,即"?"號
strlen++;
strlen++;
}
return strlen;
}
}
class TestMain
{
static void Main()
{
StringOP sop = new StringOP();
string str = "I Love China!I Love 北京!";
int iLen = sop.getStringLength(str);
Console.WriteLine("字串" + str + "的位元組數為:" + iLen.ToString());
Console.ReadKey();
}
}
將字串以Unicode的編碼轉換為位元組數組,判斷每個字元的第二個位元組是否大於0,來計算字串的位元組數
public static int bytelenght(string str)
{
//使用Unicode編碼的方式將字串轉換為位元組數組,它將所有字串(包括英文中文)全部以2個位元組儲存
byte[] bytestr = System.Text.Encoding.Unicode.GetBytes(str);
int j = 0;
for (int i = 0; i < bytestr.GetLength(0); i++)
{
//取餘2是因為位元組數組中所有的雙數下標的元素都是unicode字元的第一個位元組
if (i % 2 == 0)
{
j++;
}
else
{
//單數下標都是字元的第2個位元組,如果一個字元第2個位元組為0,則代表該Unicode字元是英文字元,否則為中文字元
if (bytestr[i] > 0)
{
j++;
}
}
}
return j;
}
直接轉成位元組碼擷取長度:
byte[] sarr = System.Text.Encoding.Default.GetBytes(s);
int len = sarr.Length;