- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for substringToLast (0.17 sec)
-
src/main/java/org/codelibs/core/lang/StringUtil.java
* * @param str * the string * @param separator * the separator * @return the resulting string */ public static String substringToLast(final String str, final String separator) { if (isEmpty(str) || isEmpty(separator)) { return str; } final int pos = str.lastIndexOf(separator); if (pos == -1) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 21.9K bytes - Viewed (0)