andgineer / TRegExpr

Regular expressions (regex), pascal.
https://regex.sorokin.engineer/en/latest/
MIT License
174 stars 63 forks source link

Named groups like in Python #177

Closed Alexey-T closed 4 years ago

Alexey-T commented 4 years ago

named-regex-grp-python

Alexey-T commented 4 years ago

\g<name> is not made yet. Other is made!! In pull-req. @andgineer Pls document it, see docs above.

Alexey-T commented 4 years ago

@andgineer now added Substitute for named groups! for usual groups it was $1 .. $9. for named, it is $<name>. it users want, I may do \g<name> later.