#url #urlencode #escaping #codec #encode #decode #character-encoding

url-escape

此库用于对 URL 中的特殊字符进行编码/转义,以及解码/反转义 URL。

2 个版本

0.1.1 2022 年 3 月 19 日
0.1.0 2021 年 4 月 21 日

#1315 in 编码

Download history 7401/week @ 2024-03-14 5097/week @ 2024-03-21 5554/week @ 2024-03-28 5962/week @ 2024-04-04 6469/week @ 2024-04-11 6561/week @ 2024-04-18 6980/week @ 2024-04-25 7023/week @ 2024-05-02 7192/week @ 2024-05-09 9501/week @ 2024-05-16 9955/week @ 2024-05-23 6481/week @ 2024-05-30 7805/week @ 2024-06-06 8719/week @ 2024-06-13 13691/week @ 2024-06-20 8878/week @ 2024-06-27

40,411 每月下载量
用于 54 个crate (32 直接)

MIT 许可证

18KB
219

URL 转义

CI

此库用于对 URL 中的特殊字符进行编码/转义,以及解码/反转义 URL。

用法

编码

此crate提供了一些用于在不同情况下对URL文本进行编码的encode_*函数。

例如,要将文本放入片段中,请使用encode_fragment函数。

assert_eq!("a%20%3E%20b?", url_escape::encode_fragment("a > b?"));

_to_writer_to_vec_to_string结尾的函数可用于生成URL文本。

let mut url = String::from("https://");
assert_eq!("admin%40example.com", url_escape::encode_userinfo_to_string("[email protected]", &mut url));
url.push_str("@127.0.0.1/");
assert_eq!("%E4%B8%AD%E6%96%87%E5%AD%97/eng/12%2034", url_escape::encode_path_to_string("中文字/eng/12 34", &mut url));
url.push('/');
assert_eq!(r"56%2F78", url_escape::encode_component_to_string("56/78", &mut url));
url.push('?');
assert_eq!(r"a=1&b=a%20b%20c", url_escape::encode_query_to_string("a=1&b=a b c", &mut url));

assert_eq!("https://admin%[email protected]/%E4%B8%AD%E6%96%87%E5%AD%97/eng/12%2034/56%2F78?a=1&b=a%20b%20c", url);

解码

assert_eq!("中文字/eng/12 34", url_escape::decode("%E4%B8%AD%E6%96%87%E5%AD%97/eng/12%2034"));

Crates.io

https://crates.io/crates/url-escape

文档

https://docs.rs/url-escape

许可证

MIT

依赖项

~14KB