Unicode C++
Unicode C++
Parse a URL into its Component Parts
See more HTTP Examples
Demonstrates how to parse a URL into it's component parts.Chilkat Unicode C++ Downloads
#include <CkUrlW.h>
void ChilkatSample(void)
{
bool success = false;
CkUrlW url;
const wchar_t *urlStr = L"https://www.amazon.com/Anarchy-State-Utopia-Robert-Nozick/dp/0465051006/ref=sr_1_1?s=books&ie=UTF8&qid=1430344305&sr=1-1&keywords=nozick#frag123";
success = url.ParseUrl(urlStr);
// Assume success..
wprintf(L"URL: %s\n",urlStr);
wprintf(L"Host: %s\n",url.host());
wprintf(L"Port: %d\n",url.get_Port());
wprintf(L"HostType: %s\n",url.hostType());
wprintf(L"Ssl: %d\n",url.get_Ssl());
wprintf(L"Path: %s\n",url.path());
wprintf(L"Query: %s\n",url.query());
wprintf(L"Frag: %s\n",url.frag());
wprintf(L"----\n");
urlStr = L"http://matt:secret@www.chilkatsoft.com:8080/somepath.asp?test=123&size=2";
success = url.ParseUrl(urlStr);
// Assume success..
wprintf(L"URL: %s\n",urlStr);
wprintf(L"Host: %s\n",url.host());
wprintf(L"Port: %d\n",url.get_Port());
wprintf(L"HostType: %s\n",url.hostType());
wprintf(L"Ssl: %d\n",url.get_Ssl());
wprintf(L"Login: %s\n",url.login());
wprintf(L"Password: %s\n",url.password());
wprintf(L"Path: %s\n",url.path());
wprintf(L"Query: %s\n",url.query());
wprintf(L"Frag: %s\n",url.frag());
}