I want to extract information from user-inputted text. Imagine I input the following:
SetVariables \"a\" \"b\" \"c\"
How would I extract in
>>> import re >>> re.findall('"([^"]*)"', 'SetVariables "a" "b" "c" ') ['a', 'b', 'c']