XenoAmess commented on a change in pull request #542: URL: https://github.com/apache/commons-lang/pull/542#discussion_r439746094
########## File path: src/main/java/org/apache/commons/lang3/StringUtils.java ########## @@ -8186,6 +8186,8 @@ public static String strip(String str, final String stripChars) { return stripEnd(str, stripChars); } + private static final Pattern STRIP_ACCENTS_PATTERN = Pattern.compile("\\p{InCombiningDiacriticalMarks}+"); //$NON-NLS-1$ Review comment: @garydgregory done. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org