python中类似URL的字符串解析
我需要解析一个或多或少是一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
urlparse.parse_qs
。Use
urlparse.parse_qs
.这是一种快速方法,但您需要在示例字符串前面添加主机和路径。
This is a quick way, but you'd need to prepend a host and path to your example string.
使用 urlparse。例如,请参阅此。
Use urlparse. For example, see this.
好吧,如果它确实是一个 URL ...或一个 URL 查询字符串(看起来更接近您的示例),那么我想您可以使用 urlparse 模块的 .parse_qsl() 函数。
例如:
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: