Code Inspection: Redundant '\d', '[:digit:]', or '\D' class elements
Reports redundant \d
or [:digit:]
that are used in one class with \w
or [:word:]
(\D
with \W
) and can be removed.
Example:
[\w\d]
After the quick-fix is applied:
[\w]
New in 2022.2
Suppress an inspection in the editor
Place 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: 21 March 2023