[ https://issues.apache.org/jira/browse/PDFBOX-169?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Andreas Lehmkühler resolved PDFBOX-169. --------------------------------------- Resolution: Fixed Fix Version/s: 0.7.3 This was already changed in pdfbox 0.7.3 > Enhancement to PDFTextStripper > ------------------------------ > > Key: PDFBOX-169 > URL: https://issues.apache.org/jira/browse/PDFBOX-169 > Project: PDFBox > Issue Type: Bug > Components: Parsing > Priority: Minor > Fix For: 0.7.3 > > > [imported from SourceForge] > http://sourceforge.net/tracker/index.php?group_id=78314&atid=552832&aid=1494495 > Originally submitted by nobody on 2006-05-24 11:31. > Hi, PDFBox is a great tool! > I'd like to request a simple enhancement to the code base if possible. > If you change the three lines below to call the get*Separator() method > the separators can be be made more dynamic by subclasses to allow > for separators to change within the document. For example line > separators could include line numbers. > Thanks, > Peter > in: > src/org/pdfbox/util/PDFTextStripper.java > line 487 > change output.write(lineSeparator); > to output.write(getLineSeparator()); > --- > line 500 > change output.write( wordSeparator ); > to output.write( getWordSeparator() ); > --- > line 537 > change output.write(pageSeparator); > to output.write( getPageSeparator() ); -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.