Konstantin
Konstantin

Reputation: 6131

URL parsing library with IDN support

Is there any good plain C (or at least C++) library for parsing URL's that also supports IDN, so that it can easily parse url like http://президент.рф/

Upvotes: 6

Views: 778

Answers (1)

richq
richq

Reputation: 56438

There's Google URL, which is a C++ library for parsing and canonicalizing URLs. It supports UTF-8 and UTF-16 encoded URLs using the ICU library.

Upvotes: 2

Related Questions