How can I use regex to get a list of all values in double quotes and true and false which dont have quotes?
For example:
string = '"hi you, sir", true, false, "come, here"'
to
["hi you, sir", true, false, "come, here"]
with 4 elements
I know i can use re.findall(r'”(.*?)”‘, string) to find all values in quotation but it doesnt bring out true and false as an element