Extract string from between quotations August 4, 2023 by Tarik >>> import re >>> re.findall('"([^"]*)"', 'SetVariables "a" "b" "c" ') ['a', 'b', 'c']