字符串中分隔键值对的正则表达式?

发布于 2024-11-03 02:22:54 字数 210 浏览 1 评论 0原文

我有一个由以下格式的字符分隔的键值对字符串:

key1=value2&key2=value2& ... &keyN=valueN

现在,我不安全地假设使用此正则表达式每两个匹配都是一个键值:

[^=&]+

有没有更安全的方法来提取这些值?

I have a string of key-value pairs that are delimited by a character in this format:

key1=value2&key2=value2& ... &keyN=valueN

Right now I'm unsafely assuming every two matches to be a key-value using this regex:

[^=&]+

Is there a safer way to pull these values out?

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

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

发布评论

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

评论(1

七禾 2024-11-10 02:22:54

如果您使用 PHP,我可能会尝试这样的操作:

preg_match_all('/(?:^|&)([^=&]+)=([^=&]+)(?:&|$)/', $string, $matches);

对于每个匹配,1 应该是键,2 应该是值。

我现在无法测试这个,但看看它是否有效。

If you're using PHP, I would probably try something like this:

preg_match_all('/(?:^|&)([^=&]+)=([^=&]+)(?:&|$)/', $string, $matches);

For each match, 1 should be the key and 2 should be the value.

I can't test this where I am right now, but see if it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文