Currently .NET uses their own nonstandard capturing group naming convention which is a dog.
I would like to enable the standard use of $1, $2 capture groups in C#.
Is their any way of doing it, or if not, is their any thirdparty regexp engines available for use, which do implement that kind of functionality.
It’s not 100% clear what you’re looking for but it sounds like you want the ability to get the value for a given group in a matched regular expression. This is definitely possible in C# (and .Net in general).
For example.
While I don’t use Mono regularly, I would be very surprised if this didn’t work there as well.