mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
19 lines
580 B
HTML
19 lines
580 B
HTML
<html>
|
|
<body>
|
|
Reports escaped meta characters.
|
|
Some RegExp coding styles specify that meta characters should be placed inside a character class,
|
|
to make the regular expression easier to understand.
|
|
This inspection does not warn about the meta character <code>[</code>, <code>]</code> and <code>^</code>,
|
|
because those would need additional escaping inside a character class.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
\d+\.\d+
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
\d+[.]\d+
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p><small>New in 2017.1</small>
|
|
</body>
|
|
</html> |