Skip to content

Instantly share code, notes, and snippets.

@nacika-ins
Last active August 29, 2015 14:21
Show Gist options
  • Save nacika-ins/c08b3c275d80796a2fe7 to your computer and use it in GitHub Desktop.
Save nacika-ins/c08b3c275d80796a2fe7 to your computer and use it in GitHub Desktop.
Like encodeURIComponent that by Rust
extern crate url;
use url::percent_encoding::utf8_percent_encode;
use url::percent_encoding::FORM_URLENCODED_ENCODE_SET;
fn main () {
let a = "https://gist.github.com/nacika-ins/c08b3c275d80796a2fe7";
let b = utf8_percent_encode(a, FORM_URLENCODED_ENCODE_SET);
println!("{}", b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment