gpt4 book ai didi

Python:匹配 BeautifulSoup 文本中的正则表达式

转载 作者:太空宇宙 更新时间:2023-11-03 14:08:53 24 4
gpt4 key购买 nike

我正在尝试抓取一个在浏览器代码中包含 ng-template 脚本(我认为是针对 Angular)的网页:

<script type="text/ng-template" id="modals/location-address.html">
<div
class= "modal-address"
style="background-image: url('https://cdn.ratemds.com/media/locations/location/map/605300-map_kTGdM7j.png');"
>
<div class="modal-body">

<address>

<strong>Sunshine Perinatology</strong><br>



7421 Conroy Windermere Road<br>

null<br>



Orlando,
FL,
United States<br>


32835

</address>

</div>

<div class="modal-footer">
<a class="btn btn-default" ng-click="close()">Close</a>

<a
href="https://maps.google.com?q=sunshine%20perinatology%2C%207421%20conroy%20windermere%20road%2C%20orlando%2C%20florida%2C%20united%20states%2C%2032835"
class="btn btn-success"
target="_blank"
>
Get Directions
</a>

</div>
</div>
</script>

这是来自浏览器检查器的示例代码。到目前为止我所做的是使用 Selenium 获取页面,然后使用 BeautifulSoup 抓取标签。对于这个特定示例,我的代码如下所示(没有 Selenium 的代码部分):

import html.parser
import re

h = html.parser.HTMLParser()

select = soup.find("script", id="modals/location-address.html")
items = []
for item in select.contents:
items.append(str(item).strip())

newContents = '<select>' + ''.join(items).replace('--','')
newSelectSoup = bs.BeautifulSoup(h.unescape(newContents), 'lxml')

pattern = "([A-Z0-9])\w+"
re.findall(pattern, newSelectSoup.find('address').text)

所以,到目前为止,我的方法是通过一些黑客攻击和反复试验来抓取 <address> 中的内容。标签。之后我考虑使用正则表达式来提取文本中所需的部分:

Sunshine Perinatology, 7421 Conroy Windermere, Orlando, FL, United States, 32835

但是,当执行re.findall(pattern, newSelectSoup.find('address').text)时,结果如下所示:

['S', 'P', '7', 'C', 'W', 'R', 'O', 'F', 'U', 'S', '3']

所以我只得到单词的第一个字母/数字,我不知道为什么。有没有办法用这种方法获取所有字符串?由于我对正则表达式完全不熟悉,因此我在 regexr.com 上尝试了带有 soup 输出的模式,它与所有单词完美匹配。

编辑

由于我没有找到抓取<address>内容的解决方案从上面的浏览器代码中,我完成了使用 HTMLParser 创建新汤的中间步骤。因此,当我使用新的 soup 代码抓取地址标签时,输出 newSelectSoup.find('address').text如下:

'\nSunshine Perinatology\n \n\n \n 7421 Conroy Windermere Road\n \n null\n \n \n\n Orlando,\n FL,\n United States\n\n \n 32835\n \n '

我的目标是在此汤输出上使用正则表达式来提取上述输出,该输出不会捕获所有换行符和 null值介于两者之间

最佳答案

您的方法的问题是 re.findall() 仅产生捕获组的结果,即 [A-Z0-9] 在你的情况下没有量词。

<小时/>如果您想要地址,可以使用

import re

string = """
'
Sunshine Perinatology



7421 Conroy Windermere Road

null



Orlando,
FL,
United States


32835

'
"""

rx = re.compile(r'[A-Z0-9]\w+,?')

address = " ".join([m.group(0) for m in rx.finditer(string)])
print(address)

哪个产量

Sunshine Perinatology 7421 Conroy Windermere Road Orlando, FL, United States 32835

关于Python:匹配 BeautifulSoup 文本中的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48667705/

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