如何使用 Regex 提取 DataFrame Python 中的 URL 和图像 URL

问题描述 投票:0回答:1
python html regex url
1个回答
0
投票

您可以在这里使用

str.extract

df["URL"] = df["PopupInfo"].str.extract(r'(https?://[^\s">]+)')
© www.soinside.com 2019 - 2024. All rights reserved.