Files
openide/RegExpSupport/resources/inspectionDescriptions/RegExpSimplifiable.html
Bas Leijdekkers be71678b09 RegExp: don't suggests simplifying replacements that are not equivalent in Unicode mode (IDEA-290490)
GitOrigin-RevId: cb85ddaee91cb6ff13596603e10fce7a55eac07c
2022-05-29 13:35:38 +00:00

15 lines
279 B
HTML

<html>
<body>
Reports regular expressions that can be simplified.
<p><b>Example:</b></p>
<pre><code>
[a] xx* [ah-hz]
</code></pre>
<p>After the quick-fix is applied:</p>
<pre><code>
a x+ [ahz]
</code></pre>
<!-- tooltip end -->
<p><small>New in 2022.1</small>
</body>
</html>