mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
18 lines
360 B
HTML
18 lines
360 B
HTML
<html>
|
|
<body>
|
|
Reports single char alternation in a RegExp.
|
|
It is simpler to use a character class instead.
|
|
This may also provide better matching performance.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
a|b|c|d
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
[abcd]
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p>
|
|
<small>New in 2017.1</small>
|
|
</body>
|
|
</html> |