Documentation | Crate informations | Repository |
This crate provides two types, PctStr
and PctString
, similar to str
and String
,
representing percent-encoded strings used in URL, URI, IRI, etc.
You can use them to encode, decode and compare percent-encoded strings.
You can parse/decode percent-encoded strings by building a PctStr
slice over a str
slice.
```rust use pct_str::PctStr;
let pct_str = PctStr::new("Hello%20World%21")?;
assert!(pct_str == "Hello World!");
let decodedstring: String = pctstr.decode(); println!("{}", decoded_string); // => Hello World! ```
To create new percent-encoded strings, use the PctString
to copy or encode new strings.
```rust use pct_str::PctString;
// Copy the given percent-encoded string. let pct_string = PctString::new("Hello%20World%21")?;
// Encode the given regular string. let pct_string = PctString::encode("Hello World!".chars(), URIReserved);
println!("{}", pctstring.asstr()); // => Hello World%21 ```
You can choose which character will be percent-encoded by the encode
function
by implementing the Encoder
trait.
```rust struct CustomEncoder;
impl pctstr::Encoder for CustomEncoder { fn encode(&self, c: char) -> bool { URIReserved.encode(c) || c.isuppercase() } }
let pctstring = PctString::encode("Hello World!".chars(), CustomEncoder); println!("{}", pctstring.as_str()); // => %48ello %57orld%21 ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.