Merge pull request #3655 from lilanlong/v5-dev

CharSequenceUtil增加移除所有前缀和移除所有后缀方法
This commit is contained in:
Golden Looly 2024-07-16 18:54:08 +08:00 committed by GitHub
commit cccfba8e69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1464,6 +1464,25 @@ public class CharSequenceUtil {
}
return str2;
}
/**
* 去掉指定所有前缀
*
* @param str 字符串
* @param prefix 前缀
* @return 切掉所有前缀的字符串若前缀不是 preffix 返回原字符串
*/
public static String removeAllPrefix(CharSequence str, CharSequence prefix) {
if (isEmpty(str) || isEmpty(prefix)) {
return str(str);
}
String str2 = str.toString();
while (str2.startsWith(prefix.toString())) {
str2 = removePrefix(str2, prefix);
}
return str2;
}
/**
* 忽略大小写去掉指定前缀
@ -1502,6 +1521,26 @@ public class CharSequenceUtil {
}
return str2;
}
/**
* 去掉指定所有后缀
*
* @param str 字符串
* @param suffix 后缀
* @return 切掉所有后缀的字符串若后缀不是 suffix 返回原字符串
*/
public static String removeAllSuffix(CharSequence str, CharSequence suffix) {
if (isEmpty(str) || isEmpty(suffix)) {
return str(str);
}
String str2 = str.toString();
while (str2.endsWith(suffix.toString())) {
str2 = removeSuffix(str2, suffix);
}
return str2;
}
/**
* 去掉指定后缀并小写首字母