如何解析 POST 正文 / GET 参数?
所以我需要用 N 个参数解析这样的字符串 login=julius&password=zgadnij&otherArg=Value
,并且每个参数都有一个值。您可以在 GET 请求和 POST 请求中找到此类参数。那么如何使用 Boost 为此类字符串创建解析器呢?
So I need to parse such string login=julius&password=zgadnij&otherArg=Value
with N args and each arg will have a value. You can find such ti GET arguments and in POST requests. So how to create a parser for such strings using Boost?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
&
上拆分=
上拆分结果部分无需正则表达式。
&
=
No regex needed.
在这个问题的情况下,正如Tomalak提到的,正则表达式可能是
有点矫枉过正。
如果您的实际输入更复杂并且需要正则表达式,那么
下面的代码说明一下用法?
希望这有帮助
In this question's case, as Tomalak mentioned, regular expression may be a
little overkill.
If your real input is more complex and regular expression is needed, does
the following code illustrate the usage?
Hope this helps