Code Inspection: Escaped meta character
Reports the escaped meta characters, e.g. \.
. Some RegExp coding styles specify that meta characters should be placed inside a character class, to make the regular expression easier to understand. For example the regex \d+\.\d+
would be written as \d+[.]\d+
. This inspection does not warn about the meta character [
, ]
and ^
, because those would need additional escaping inside a character class.
New in 2017.1
Suppress an inspection in the editor
Position the caret at the highlighted line and press Alt+Enter or click .
Click the arrow next to the inspection you want to suppress and select the necessary suppress action.
Last modified: 16 July 2021