You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Regarding named capture groups, does the above approach lead to a case in which, for a pattern like b'(?<foo>ax) bx (?<bar>cx), the names foo and bar can be recovered (along with their associated content) in the match handler?
The goal would be to obtain the necessary context to create a dictionary such as
{
"foo": "ax",
"bar": "cx",
}
The text was updated successfully, but these errors were encountered:
First, thanks for all the work on this extremely useful library –
#32 (comment)
Regarding named capture groups, does the above approach lead to a case in which, for a pattern like
b'(?<foo>ax) bx (?<bar>cx)
, the namesfoo
andbar
can be recovered (along with their associated content) in the match handler?The goal would be to obtain the necessary context to create a dictionary such as
The text was updated successfully, but these errors were encountered: