Inspectopedia
 
2024.3

Anonymous capturing group or numeric back reference

Warning
New
Last modified: 03 December 2024

Reports anonymous capturing groups and numeric back references in a RegExp. These are only reported when the RegExp dialect supports named group and named group references. Named groups and named back references improve code readability and are recommended to use instead. When a capture is not needed, matching can be more performant and use less memory by using a non-capturing group, i.e. (?:xxx) instead of (xxx).

Example:

A better regex pattern could look like this:

New in 2017.2