Answers for "Python get chars among quotation marks"

0

Python get chars among quotation marks

# credit to the Stack Overflow user in the source link

import re
re.findall('"([^"]*)"', 'SetVariables "a" "b" "c" ')
>>> ['a', 'b', 'c']
Posted by: Guest on June-21-2021

Code answers related to "Python get chars among quotation marks"

Python Answers by Framework

Browse Popular Code Answers by Language