Code Inspection: Single character alternation
Reports single char alternation (e.g. a|b|c|d
) in a RegExp. It is simpler to use a character class ( [abcd]
) instead. This usually also provides slightly better matching performance.
New in 2017.1
Last modified: 31 July 2020