5 releases (3 stable)
1.1.1 | Jun 17, 2020 |
---|---|
1.0.0 | May 9, 2017 |
0.2.0 | Sep 16, 2016 |
0.1.1 | Sep 15, 2016 |
0.1.0 |
|
#21 in Encoding
126,389 downloads per month
Used in 218 crates
(65 directly)
9KB
156 lines
urlencoding
A tiny Rust library for doing URL percentage encoding and decoding. It percent-encodes everything except alphanumerics and -
, _
, .
, ~
.
When decoding +
is not treated as a space. Error recovery from incomplete percent-escapes follows the WHATWG URL standard.
Usage
To encode a string, do the following:
use urlencoding::encode;
fn main() {
let encoded = encode("This string will be URL encoded.");
println!("{}", encoded);
// This%20string%20will%20be%20URL%20encoded.
}
To decode a string, it's only slightly different:
use urlencoding::decode;
fn main() {
let decoded = decode("%F0%9F%91%BE%20Exterminate%21");
println!("{}", decoded.unwrap());
// 👾 Exterminate!
}
License
This project is licensed under the MIT license, Copyright (c) 2017 Bertram Truong. For more information see the LICENSE
file.