带有百分号的编码字符串

发布于 2025-01-11 23:14:46 字数 313 浏览 0 评论 0原文

在我的抓取项目中,我遇到了一个包含以下形式的字符串的数据点,

string = "d%61b%69a%5f%62%65%79@yaho%6f.fr"
target_string = [email protected]

我应该对错误编码的字符串进行什么编码更改?如何正确刮掉这些断弦呢?

谢谢

In my scraping project I encountered a data point containing a string in the following form

string = "d%61b%69a%5f%62%65%79@yaho%6f.fr"
target_string = [email protected]

What encoding change should I do to wrongly encoded strings? How can I scrape these broken strings correctly?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不即不离 2025-01-18 23:14:46

你需要 urllib 取消引用

>>> from urllib.parse import unquote
>>> unquote("d%61b%69a%5f%62%65%79@yaho%6f.fr")
'[email protected]'

you need urllib unquote

>>> from urllib.parse import unquote
>>> unquote("d%61b%69a%5f%62%65%79@yaho%6f.fr")
'[email protected]'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文