如果没有嵌套的引号:
re.findall(r'"([^"]*)"', inputString)
演示:
>>> import re>>> inputString = 'According to some, dreams express "profound aspects of personality" (Foulkes 184), though others disagree.'>>> re.findall(r'"([^"]*)"', inputString)['profound aspects of personality']



