Actions
Feature #14669
openRegexp does not expose the amount of capture groups.
Feature #14669:
Regexp does not expose the amount of capture groups.
Status:
Open
Assignee:
-
Target version:
-
Description
For a project we needed to know how many capture groups a Regex exposes (before actually matching it). The Onigmo regex library used by Ruby has this information, accessible with onig_number_of_captures(const regex_t *), but the Ruby Regexp class doesn't expose this information.
Actions