字串截取固定長度的方法(C#)

來源:互聯網
上載者:User
字串截取固定長度的方法(C#)

 這個函數也沒有什麼特別之處,就是可以截取一定長度的字串,可能小特點就是len是位元組,解決了漢字與英文位元組不一樣導致直接截取到的長度不一樣的問題

 

 1字串截取函數#region 字串截取函數 
 2public static string CutString(string inputString,int len) 
 3{ 
 4
 5
 6ASCIIEncoding ascii = new ASCIIEncoding(); 
 7int tempLen=0; 
 8string tempString=""; 
 9byte[] s = ascii.GetBytes(inputString); 
10for(int i=0;i<s.Length;i++) 
11{ 
12if((int)s[i]==63) 
13{ 
14tempLen+=2; 
15} 
16else 
17{ 
18tempLen+=1; 
19} 
20
21try 
22{ 
23tempString+=inputString.Substring(i,1); 
24} 
25catch 
26{ 
27break; 
28} 
29
30if(tempLen>len) 
31break; 
32} 
33//如果截過則加上半個省略符號 
34byte[] mybyte=System.Text.Encoding.Default.GetBytes(inputString); 
35if(mybyte.Length>len) 
36tempString+="…"; 
37
38
39return tempString; 
40} 
41#endregion
42

聯繫我們

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