Python:用于过滤字符串的正则表达式

时间:2018-09-28 08:39:02

标签: python regex python-3.x

我有一个输入字符串:

internal_key="apachesolr" pid="2822" category="known" display_name="Apache Solr" vendor="The Apache Software Foundation"

我必须过滤显示名称,该名称可以是任何东西。

输出应为:

Apache Solr

1 个答案:

答案 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)