extract string between quotes python code example
Example: finding text between quotes in python
import re
text1 = '"Python", "PHP", "Java"'
print(re.findall(r'"(.*?)"', text1))
import re
text1 = '"Python", "PHP", "Java"'
print(re.findall(r'"(.*?)"', text1))