python中类似URL的字符串解析

发布于 2024-12-22 13:03:34 字数 267 浏览 2 评论 0原文

我需要解析一个或多或少是一个 url 的字符串。例如,我有一个作为 URL 的字符串,

tempString = "?var1=somevalue1&var2=somevalue2&var3=somevalue3"

我需要解析字符串 tempString 并获取 var1 var2< 的值/code> 和 var3 。获得价值的最佳方式是什么。

I need to parse a string which is more or less a url.. for example i have a string which is a URL

tempString = "?var1=somevalue1&var2=somevalue2&var3=somevalue3"

i need to parse the string tempString and get the value of var1 var2 and var3 from it. What's the best way to get the value.

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

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

发布评论

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

评论(4

从﹋此江山别 2024-12-29 13:03:34

这是一种快速方法,但您需要在示例字符串前面添加主机和路径。

import urlparse

scheme, netloc, path, query, fragment = urlparse.urlsplit( url )
parameters = urlparse.parse_qs( query )

This is a quick way, but you'd need to prepend a host and path to your example string.

import urlparse

scheme, netloc, path, query, fragment = urlparse.urlsplit( url )
parameters = urlparse.parse_qs( query )
泅渡 2024-12-29 13:03:34

使用 urlparse。例如,请参阅此

Use urlparse. For example, see this.

风蛊 2024-12-29 13:03:34

好吧,如果它确实是一个 URL ...或一个 URL 查询字符串(看起来更接近您的示例),那么我想您可以使用 urlparse 模块的 .parse_qsl() 函数。

例如:

import urlparse
... 
qry = dict(urlparse.parse_qsl(tempString))
## parse_qsl returns a tuple of tuples suitable for instantiating or updating a dictionary

Well if it were really a URL ... or a URL query string (which looks closer to your example) then I suppose you could use the urlparse module's .parse_qsl() function.

For example:

import urlparse
... 
qry = dict(urlparse.parse_qsl(tempString))
## parse_qsl returns a tuple of tuples suitable for instantiating or updating a dictionary
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文