Suppose I have a string "a foobar" and I use "^a\s*" to match "a ".
Is there a way to easily get "foobar" returned? (What was NOT matched)
I want to use a regex to look for a command word and also use the regex to remove the command word from the string.
I know how to do this using something like:
mystring[:regexobj.start()] + email[regexobj.end():]
But this falls apart if I have multiple matches.
Thanks!