去掉字串首尾指定的字元

2021-09-18 07:43:58 字數 574 閱讀 8714

話不多說直接上**

/**

* 去掉字串頭尾指定字元

* @param source 需要處理的字串

* @param element 指定字元

* @return

*/public static string trimfirstandlastchar(string source, char element) while (beginindexflag || endindexflag);//條件通過再次擷取

return source;

}

上面demo是迴圈去除指定字元  如果只想要去掉首尾 不需要迴圈可以將do  while去掉

/**

* 去掉字串頭尾指定字元

* @param source 需要處理的字串

* @param element 指定字元

* @return

*/public static string trimfirstandlastchar(string source, char element)

js 去除字串首尾指定字元

abc trim abc 這是去除首尾空格的辦法 那麼有沒辦法去除首尾指定的字元,肯定有,方法很多,下面通過正規表示式實現 例如,我想去掉首尾逗號,let str abc,cde,fff,str str.replace s s g,結果 abc,cde,fff ok,得到自己想要的結果,記錄一下 如...

C 去掉字串頭尾指定字元

private void button2 click object sender,eventargs e 資訊提示 messageboxbuttons.ok,messageboxicon.information myinfo 中華人民共和國 顯示 中華人民共和國 messagebox.show my...

去掉字串首尾逗號 PHP去除字串開頭或末尾逗號

去除最後乙個逗號 str a,b,c,d,echo rtrim str,返回的結果就是 a,b,c,d 去除開頭逗號 str a,b,c,d echo ltrim str,返回的結果就是 a,b,c,d 用到的函式 trim 函式從字串的兩端刪除空白字元和其他預定義字元。trim string,ch...