常用的控制字串類

2021-04-08 23:54:41 字數 3781 閱讀 1826

已經編輯成類,方便使用朋友那裡拷的哈哈

using

system;

namespace

.../**/

/**/

/**/

//////

從字串中的尾部刪除指定的字串

//////

//////

public

static

string

remove(

string

sourcestring,

string

removedstring)

......

return

result;

}catch

......

}/**/

/**/

/**/

//////

獲取拆分符右邊的字串

//////

//////

public

static

string

rightsplit(

string

sourcestring, 

char

splitchar)

......

return

result;

}/**/

/**/

/**/

//////

獲取拆分符左邊的字串

//////

//////

public

static

string

leftsplit(

string

sourcestring, 

char

splitchar)

......

return

result;

}/**/

/**/

/**/

//////

去掉最後乙個逗號

//////

///public

static

string

dellastcomma(

string

origin)

......

return

origin.substring(

0,origin.lastindexof(",

"));

}/**/

/**/

/**/

//////

刪除不可見字元

//////

///public

static

string

deleteunvisiblechar(

string

sourcestring)

......

return

sbuilder.tostring();

}/**/

/**/

/**/

//////

獲取陣列元素的合併字串

//////

///public

static

string

getarraystring(

string

stringarray)

......

return

totalstring;

}/**/

/**/

/**/

//////

獲取某一字串在字串陣列中出現的次數

//////

//////

//////

//////

//////

//////

///a int value...

///public

static

intgetstringcount(

string

stringarray,

string

findstring)

......

return

count;

}/**/

/**/

/**/

//////

獲取某一字串在字串中出現的次數

//////

//////

原字串

//////

//////

///匹配字串

//////

//////

匹配字串數量

///public

static

intgetstringcount(

string

sourcestring,

string

findstring)

......

return

count;

}/**/

/**/

/**/

//////

擷取從startstring開始到原字串結尾的所有字元   

//////

//////

//////

//////

//////

//////

///a string value...

///public

static

string

getsubstring(

string

sourcestring,

string

startstring)

......

return

sourcestring;

}catch

......

}public

static

string

getsubstring(

string

sourcestring,

string

beginremovedstring,

string

endremovedstring)

......

return

sourcestring;

}catch

......

}/**/

/**/

/**/

//////

按位元組數取出字串的長度

//////

要計算的字串

///字串的位元組數

public

static

intgetbytecount(

string

strtmp)

......

else

......

}return

intcharcount;

}/**/

/**/

/**/

//////

按位元組數要在字串的位置

//////

字串的位置

///要計算的字串

///位元組的位置

public

static

intgetbyteindex(

intintins,

string

strtmp)

......

for(

inti=0

;i<

strtmp.length;i++)

......

else

......

if(intreins

>=

intins)

......

}return

intreins;}}

}

格式控制字串

一.printf printf 格式控制字串 輸出表列 其中格式控制字串用於指定輸出格式。格式控制串可由格式字串和非格式字串兩種組成。格式字串 以 開頭的字串,在 後面跟有各種格式字元,以說明輸出資料的型別 形式 長度 小數字數等。如 d 表示按十進位制整型輸出 ld 表示按十進位製長整型輸出 c ...

printf的格式控制字串

printf 格式控制字串 輸出表列 其中格式控制字串用於指定輸出格式。格式控制串可由格式字串和非格式字串兩種組成。格式字串是以 開頭的字串,在 後面跟有各種格式字元,以說明輸出資料的型別 形式 長度 小數字數等。如 d 表示按十進位制整型輸出 ld 表示按十進位製長整型輸出 c 表示按字元型輸出等...

刪除字串中的控制字元(python)

要刪除字串中的控制字元,因為無符號控制字元不能夠在xml中編碼,諸如 b 轉換成 x02 如果作為內容寫入xml,會導致xml錯誤,所以需要把控制字元刪除。python 如下 方法 一 def strip control characters str input if str input impor...