Back to Intellij Community

RegExpDuplicateAlternationBranch

RegExpSupport/resources/inspectionDescriptions/RegExpDuplicateAlternationBranch.html

2025.3-rc-2261 B
Original Source

Reports duplicate branches in a RegExp alternation. Duplicate branches slow down matching and obscure the intent of the expression.

Example:

(alpha|bravo|charlie|alpha)

After the quick-fix is applied:

(alpha|bravo|charlie)

New in 2017.1