我有一个输入字符串:
internal_key="apachesolr" pid="2822" category="known" display_name="Apache Solr" vendor="The Apache Software Foundation"
我必须过滤显示名称,该名称可以是任何东西。
输出应为:
Apache Solr
答案 0 :(得分:0)
import re
str="""internal_key="apachesolr" pid="2822" category="known" display_name="Apache Solr" vendor="The Apache Software Foundation"""
re.findall("display_name=\"([^\"]*)", mystr)