Files
openide/java/java-impl/resources/inspectionDescriptions/DynamicRegexReplaceableByCompiledPattern.html
Leonid Shalupov 40795fe787 IJI-2422: community/java: move resources under resources root
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
2025-02-05 04:43:28 +00:00

20 lines
704 B
HTML

<html>
<body>
Reports calls to the regular expression methods (such as <code>matches()</code> or <code>split()</code>)
of <code>java.lang.String</code> using constant arguments.
<p>
Such calls may be profitably replaced with a <code>private static final Pattern</code> field
so that the regular expression does not have to be compiled each time it is used.
</p>
<p><b>Example:</b></p>
<pre><code>
text.replaceAll("abc", replacement);
</code></pre>
<p>After the quick-fix is applied:</p>
<pre><code>
private static final Pattern ABC = Pattern.compile("abc", Pattern.LITERAL);
ABC.matcher(text).replaceAll(Matcher.quoteReplacement(replacement));
</code></pre>
<!-- tooltip end -->
</body>
</html>