这个问题在这里已经有一个答案:>
RegEx match open tags except XHTML self-contained tags35
我正在尝试使用正则表达式来解析XML文件(在我看来,这似乎是最简单的方法).
我正在尝试使用正则表达式来解析XML文件(在我看来,这似乎是最简单的方法).
例如,一行可能是:
line='<City_State>PLAINSBORO,NJ 08536-1906</City_State>'
要访问标签City_State的文本,我使用:
attr = re.match('>.*<',line)
但没有回报.
有人可以指出我在做错什么吗?
你通常不想使用re.match.
Quoting from the docs:
原文链接:https://www.f2er.com/regex/356667.htmlIf you want to locate a match anywhere in string,use 07001 instead (see also 07002).
注意:
>>> print re.match('>.*<',line) None >>> print re.search('>.*<',line) <_sre.SRE_Match object at 0x10f666238> >>> print re.search('>.*<',line).group(0) >PLAINSBORO,NJ 08536-1906<
另外,为什么要用正则表达式解析XML,当你可以使用像BeautifulSoup
:).
>>> from bs4 import BeautifulSoup as BS >>> line='<City_State>PLAINSBORO,NJ 08536-1906</City_State>' >>> soup = BS(line) >>> print soup.find('city_state').text PLAINSBORO,NJ 08536-1906