C 去掉字串頭尾指定字元

2021-12-30 00:28:49 字數 1109 閱讀 1675

private void button2_click(object sender, eventargs e)

), "資訊提示", messageboxbuttons.ok, messageboxicon.information);           

myinfo = ",-中華人民共和國-,-";

//顯示 "中華人民共和國"

messagebox.show(myinfo.trim(new char[2] ), "資訊提示", messageboxbuttons.ok, messageboxicon.information);                       

myinfo = "--中華人民共和國--";

//顯示 "中華人民共和國--"

messagebox.show(myinfo.trimstart(new char[1] ), "資訊提示", messageboxbuttons.ok, messageboxicon.information);                       

myinfo = ",-中華人民共和國-,-";

//顯示 "中華人民共和國-,-"

messagebox.show(myinfo.trimstart(new char[2] ), "資訊提示", messageboxbuttons.ok, messageboxicon.information);                       

myinfo = "--中華人民共和國--";

//顯示 "--中華人民共和國"

messagebox.show(myinfo.trimend(new char[1] ), "資訊提示", messageboxbuttons.ok, messageboxicon.information);                       

myinfo = ",-中華人民共和國-,-";

//顯示 ",-中華人民共和國"

messagebox.show(myinfo.trimend(new char[2] ), "資訊提示", messageboxbuttons.ok, messageboxicon.information);                       

}

去掉字串首尾指定的字元

話不多說直接上 去掉字串頭尾指定字元 param source 需要處理的字串 param element 指定字元 return public static string trimfirstandlastchar string source,char element while begininde...

js中去掉字串中的某個指定字元

1.使用replace函式替換 var str hello world str str.replace l 即 使用空串替換某乙個字串,則是可以實現去除指定字串功能 2.使用字串分割函式在聚合 var str hello world var items str.split o 會得到乙個陣列,陣列中...

js去除字串頭尾空格

js去除頭尾空格 let str 2020 11 2 function trim str return str.slice start,end console.log trim str slice start,end 方法可提取字串的某個部分,並以新的字串返回被提取的部分。使用 start 包含 和...