Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for appendLineNumber (0.21 sec)

  1. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

         * @param content the content to add line numbers to
         * @return the content with line numbers prepended, or empty string if content is blank
         */
        public String appendLineNumber(final String prefix, final String content) {
            if (StringUtil.isBlank(content)) {
                return StringUtil.EMPTY;
            }
            final String[] values = content.split("\n");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.2K bytes
    - Viewed (0)
Back to top