SynWrite Wiki
Advanced text editor for programmers and Notepad replacement.
Brought to you by:
alexey_t,
matthias030
This action can be called by plugin to parse some regex (regular expression) into subparts.
Subparts are surrounded by braces in regex and are numbered from 1 to 8.
For example: string "www 123-44" can be parsed by regex "(\w+) (\d+)-(\d+)" into subparts
"www", "123", "44", others are empty.
If you pass bad regex for a string, all subparts will be empty.
Parameters:
Return value: not used.