本文介绍了使用正则表达式提振比赛C ++的网址解析器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我怎么可以解析C ++中与提升的正则表达式的网址
像我有一个网址
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
我需要拆分基本网址www.google.com
,然后查询路径搜索H =测试&放大器; Q = examaple
推荐答案
你确定你需要的正则表达式是什么?
Are you sure you need regex for that?
#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;
}
正则表达式的版本:
regex version:
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 ++的网址解析器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!