Function to convertMatchvalue given by the pattern. Can also be adict, to useformatterwith matches named with key. >>>defyear_formatter(value): ...returnint(value)>>>matches=Rebulk().regex(r'\d{4}',formatter=year_formatter) \ ... .matches("In year 1982 ...")>>>isinstance(matches...
+ +Then implement the execute function for your command as: + + def __call__(self, debugger, args_array, exe_ctx, result): + +The arguments will be in a python array as strings. + +You can access the option values using varname you passed in when defining the option. +If you ...