Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for startsWithIgnoreCase (0.07 sec)

  1. src/main/java/org/codelibs/core/lang/StringUtil.java

         * @param target2
         *            the substring to compare
         * @return {@literal true} if the string starts with the specified substring, ignoring case
         */
        public static boolean startsWithIgnoreCase(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)
Back to top