- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for endsWithIgnoreCase (0.11 sec)
-
src/main/java/org/codelibs/core/lang/StringUtil.java
* @param target2 * the substring to compare * @return {@literal true} if the string ends with the specified substring, ignoring case */ public static boolean endsWithIgnoreCase(final String target1, final String target2) { if (target1 == null || target2 == null) { return false; } final int length1 = target1.length();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 21.9K bytes - Viewed (0)