programming-examples/python/Regular_Expression/Extract values between quotation marks of a string.py
2019-11-15 12:59:38 +01:00

3 lines
87 B
Python

import re
text1 = '"Python", "PHP", "Java"'
print(re.findall(r'"(.*?)"', text1))