finding text between quotes in python

Solutions on MaxInterview for finding text between quotes in python by the best coders in the world

showing results for - "finding text between quotes in python"
Constanza
01 Apr 2019
1import re
2text1 = '"Python", "PHP", "Java"'
3print(re.findall(r'"(.*?)"', text1))