Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

URL parsing library with IDN support

Tags:

c++

c

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://президент.рф/

like image 635
Konstantin Avatar asked Nov 15 '22 10:11

Konstantin


1 Answers

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.

like image 87
richq Avatar answered Dec 17 '22 17:12

richq