Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for endsWithIgnoreCase (0.06 seconds)

  1. 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();
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Feb 12 12:10:45 GMT 2026
    - 21.5K bytes
    - Click Count (0)
Back to Top