bd2019us created CTAKES-531: ------------------------------- Summary: String.replaceAll() has bad performance against replace() if not regex. Key: CTAKES-531 URL: https://issues.apache.org/jira/browse/CTAKES-531 Project: cTAKES Issue Type: Bug Reporter: bd2019us
Location: (1) ctakes-core/src/main/java/org/apache/ctakes/core/cc/html/HtmlTextWriter.java (2) ctakes-gui/src/main/java/org/apache/ctakes/gui/dictionary/util/FileUtil.java The String.replaceAll(regex, other) can replace the string satisfying the "regex" with the given "other" string. However, if the given "regex" is a simple plain string (i.e., no special characters), another API String.replace(origin, other) is recommended as the former need to be compiled a head of time, which will cause additional overhead. -- This message was sent by Atlassian JIRA (v7.6.3#76005)