c++使用 boost 正则表达式匹配的 URL 解析器
我如何使用 boost regex 解析 C++ 中的 url 就像我有一个网址,
http://www.google.co.in/search?h=test&q=examaple
我需要拆分基本网址www.google.com
,然后查询路径search?h=test&q=examaple
how can i parse an url in c++ with boost regex
like i have an url
http://www.google.co.in/search?h=test&q=examaple
i need to split the base url www.google.com
and then query path search?h=test&q=examaple
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定需要正则表达式吗?
正则表达式版本:
Are you sure you need regex for that?
regex version: