C#實現 擷取指定位元組長度 中英文混合字串 的方法

來源:互聯網
上載者:User

平時在作資料庫插入操作時,如果用 INSERT 語句向一個varchar型欄位插入內容時,有時會因為插入的內容長度超出規定的長度而報錯。尤其是插入中英文混合字串時,SQL Server中一般中文要佔兩個位元組,所以對混合型的字串就要作一個處理,統一按位元組長度來計算字串長度,方法如下:
  /// <summary>
  /// 擷取指定位元組長度的中英文混合字串
  /// </summary>
  private string GetString(string str, int len)
  {
   string result = string.Empty;// 最終返回的結果
   int byteLen = System.Text.Encoding.Default.GetByteCount(str);// 單位元組字元長度
   int charLen = str.Length;// 把字元平等對待時的字串長度
   int byteCount = 0;// 記錄讀取進度
   int pos = 0;// 記錄截取位置
   if (byteLen > len)
   {
    for (int i = 0; i < charLen; i++)
    {
     if (Convert.ToInt32(str.ToCharArray()[i]) > 255)// 按中文字元計算加2
      byteCount += 2;
     else// 按英文字元計算加1
      byteCount += 1;
     if (byteCount > len)// 超出時只記下上一個有效位置
     {
      pos = i;
      break;
     }
     else if(byteCount == len)// 記下當前位置
     {
      pos = i + 1;
      break;
     }
    }

    if(pos >= 0)
     result = str.Substring(0, pos);
   }
   else
    result = str;

   return result;
  }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.