gpt4 book ai didi

c++ Url Parser使用boost正则表达式匹配

转载 作者:太空狗 更新时间:2023-10-29 20:31:44 24 4
gpt4 key购买 nike

我如何使用 boost regex 解析 C++ 中的 url就像我有一个 url

http://www.google.co.in/search?h=test&q=examaple

我需要拆分 base url www.google.com 然后查询路径 search?h=test&q=examaple

最佳答案

你确定你需要正则表达式吗?

#include <iostream>
#include <algorithm>

int main()
{
using namespace std;
string x = "http://www.google.co.in/search/search/?h=test&q=examaple";

size_t sp = x.find_first_of( '/', 7 /* skip http:// part */ );
if ( sp != string::npos ) {
string base_url( x.begin()+7, x.begin()+sp );
cout << base_url << endl;
sp = x.find_last_of( '/' );
if ( sp != string::npos ) {
string query( x.begin()+sp+1, x.end() );
cout << query << endl;
}
}

return 0;
}

正则表达式版本:

string input_string = "http://www.google.co.in/search/search/?h=test&q=examaple";
boost::regex exrp( "^(?:http://)?([^/]+)(?:/?.*/?)/(.*)$" );
boost::match_results<string::const_iterator> what;
if( regex_search( input_string, what, exrp ) ) {
std::string base_url( what[1].first, what[1].second );
std::string query( what[2].first, what[2].second );
}

关于c++ Url Parser使用boost正则表达式匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3624651/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com