# urlparser **Repository Path**: painkiller/urlparser ## Basic Information - **Project Name**: urlparser - **Description**: Simple URL Parser for C++ - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-04-20 - **Last Updated**: 2021-06-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README URL Parser for C++ ================== URL Parser for C++ This is an url parser for C++. Functionality: -------------- - URL parsing - URL encoding/decoding - query parsing - path parsing Usage: ------ ``` ... string s = "http://www.google.co.kr/path1/path2/file.html"; EdUrlParser* url = EdUrlParser::parseUrl(s); ... ``` Refer to example for detail information.