Answers for "get things between quotes in python"

1

python get the elements between quotes in string

import re
foo = 'SetVariables "a" "b" "c" '
bar = re.findall('"([^"]*)"', foo)

print(bar)
### ['a", 'b', 'c']
Posted by: Guest on December-02-2020
0

finding text between quotes in python

import re
text1 = '"Python", "PHP", "Java"'
print(re.findall(r'"(.*?)"', text1))
Posted by: Guest on July-10-2020

Code answers related to "get things between quotes in python"

Python Answers by Framework

Browse Popular Code Answers by Language