gpt4 book ai didi

python - 如何组合所有 3 合 1 re.findall() ??(python 2.7 && 正则表达式)

转载 作者:行者123 更新时间:2023-12-01 04:50:16 27 4
gpt4 key购买 nike

Filter1=re.findall(r'<span (.*?)</span>',PageSource) 
Filter2=re.findall(r'<a href=.*title="(.*?)" >',PageSource)
Filter3=re.findall(r'<span class=.*?<b>(.*?)</b>.*?',PageSource)

如何用 1 行代码做到这一点......就像这样:

Filter=re.findall(r'  ',PageSource)

我尝试过这种方法:

Filter=re.findall(r'<span (.*?)</span>'+
r'<a href=.*title="(.*?)" >'+
r'<span class=.*?<b>(.*?)</b>.*?',PageSource)

但是它不起作用。

最佳答案

使用 HTML 解析器怎么样?

示例,使用 BeautifulSoup :

from bs4 import BeautifulSoup

data = "your HTML here"
soup = BeautifulSoup(data)

span_texts = [span.text for span in soup.find_all('span')]
a_titles = [a['title'] for a in soup.find_all('a', title=True)]
b_texts = [b.text for b in soup.select('span[class] > b')]

result = span_texts + a_titles + b_texts

演示:

>>> from bs4 import BeautifulSoup
>>>
>>> data = """
... <div>
... <span>Span's text</span>
... <a title="A title">link</a>
... <span class="test"><b>B's text</b></span>
... </div>
... """
>>> soup = BeautifulSoup(data)
>>>
>>> span_texts = [span.text for span in soup.find_all('span')]
>>> a_titles = [a['title'] for a in soup.find_all('a', title=True)]
>>> b_texts = [b.text for b in soup.select('span[class] > b')]
>>>
>>> result = span_texts + a_titles + b_texts
>>> print result
[u"Span's text", u"B's text", 'A title', u"B's text"]
<小时/>

除此之外,您的正则表达式非常不同并且具有不同的目的 - 我不会尝试挤压不可挤压的,将它们分开并将结果合并到一个列表中。

关于python - 如何组合所有 3 合 1 re.findall() ??(python 2.7 && 正则表达式),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28618852/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com