c# 擷取字串的位元組數

來源:互聯網
上載者:User

  將字串轉換為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;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.