0

I am looking for a C++ library to handle URLs/URIs, mainly HTTP URLs. I only want the URI text handling, not any network operation. I know of Poco::URI but IIRC one has to use the whole framework for it to work properly, so I would prefer something smaller and/or standalone. Is there any such other thing?

wilx
  • 17,697
  • 6
  • 59
  • 114

1 Answers1

0

Boost.Spirit, released under the Boost Software License allows you to do this. The library is cpp-netlib which you can find the documentation for at http://cpp-netlib.github.com/ .

The relevant type you'll want to use is boost::network::http::uri .