THausherr commented on code in PR #184: URL: https://github.com/apache/pdfbox/pull/184#discussion_r1484556201
########## fontbox/src/main/java/org/apache/fontbox/ttf/GlyphSubstitutionTable.java: ########## @@ -75,6 +76,13 @@ public class GlyphSubstitutionTable extends TTFTable private GsubData gsubData; + /** + * The regex represents 4 'word characters' [a-zA-Z_0-9], + * see {@link java.util.regex.ASCII#WORD}<br> + * Note: the ' '-character is not matched! + */ + static final Pattern wordPattern = Pattern.compile( "\\w{4}" ); Review Comment: yeah, can be done for 3.0 and trunk. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org For additional commands, e-mail: dev-h...@pdfbox.apache.org