3 lines
87 B
Python
3 lines
87 B
Python
import re
|
|
text1 = '"Python", "PHP", "Java"'
|
|
print(re.findall(r'"(.*?)"', text1)) |