Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for appendLineNumber (0.07 seconds)

  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");
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 17.4K bytes
    - Click Count (0)
Back to Top