去除字符串开头结尾的指定字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了去除字符串开头结尾的指定字符串相关的知识,希望对你有一定的参考价值。
/**
* <h5>功能:去除字符串开头结尾的指定字符串</h5>
*
* @param str 要处理的字符串
* @param delStr 指定要去除的字符串
* @return
*/
private static String trimString(String str, String delStr){
int delStrLength = delStr.length();
if (str.startsWith(delStr)) {
str = str.substring(delStrLength);
}
if (str.endsWith(delStr)) {
str = str.substring(0,str.length() - delStrLength);
}
return str;
}
以上是关于去除字符串开头结尾的指定字符串的主要内容,如果未能解决你的问题,请参考以下文章
python通过正则获取字符串指定开头和结尾的中间字符串的代码