I'm reading a response from a source which is an journal or an essay and I have the html response as a string like:
According to some, dreams express "profound aspects of personality" (Foulkes 184), though others disagree.
My goal is just to extract all of the quotes out of the given string and save each of them into a list. My approach was:
[match.start() for m in re.Matches(inputString, ""([^"]*)""))]
Somehow it didn't work for me. Any helps on my regex here? Thanks a lot.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…