I am learning re in python.
I understand all other things in the following example.
but, i really dont understand what special (in tags) means in the following example.
re.compile('((?P<special>[0:-])\s)')
kindly help if know it.
|
I am learning re in python.
kindly help if know it. |
|||
|
|
|
They're called named capturing groups. A quick explanation here:
|
||||
|
|
|
This is called Named Capture Group. |
|||
|
|