字串擷取固定長度的方法 C

2022-01-24 15:45:59 字數 662 閱讀 9418

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

1字串擷取函式

#region

字串擷取函式 

2public

static

string

cutstring(

string

inputstring,

intlen) 316

else

1720

21try22

25catch

2629

30if(templen

>

len) 

31break

; 32

}33//如果截過則加上半個省略號 

34byte

mybyte

=system.text.encoding.default.getbytes(inputstring); 

35if(mybyte.length

>

len) 

36tempstring+="

…"; 37

3839

return

tempstring; 

40}41

#endregion

42

字串擷取固定長度的方法 C

這個函式也沒有什麼特別之處,就是可以擷取一定長度的字串,可能小特點就是len是位元組,解決了漢字與英文位元組不一樣導致直接擷取到的長 度不一樣的問題,region 字串擷取函式 public static string cutstring string inputstring,int len 如果截...

字串擷取固定長度的方法

這個函式也沒有什麼特別之處,就是可以擷取一定長度的字串,可能小特點就是len是位元組,解決了漢字與英文位元組不一樣導致直接擷取到的長度不一樣的問題,region 字串擷取函式 public static string cutstring string inputstring,int len 如果截過...

擷取指定長度的字串

函式說明 擷取指定長度的字串 utf 8專用 漢字和大寫字母長度算1,其它字元長度算0.5 param string str 原字串 param int len 擷取長度 param string etc 省略字元.return string 擷取後的字串 if function exists re...