Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for _trimText (0.18 sec)

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

         * @param text
         *            The text to trim
         * @param trimText
         *            The characters to remove
         * @return The resulting string
         */
        public static final String ltrim(final String text, String trimText) {
            if (text == null) {
                return null;
            }
            if (trimText == null) {
                trimText = " ";
            }
            int pos = 0;
    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