#uri #string #percent #encode #web #decoding

uri-pct

对URI组件或字符串进行百分比编码/解码

2个版本

0.1.1 2021年5月10日
0.1.0 2021年5月10日

#2373 in 编码

艺术-2.0

4KB
55

百分比编码字符串

此包提供了一个编码/解码字符串的功能接口。它尽可能解码格式不正确的字符串(例如 "%2%20%" => " ")。

用法

use uri-pct;

let x = uri-pct::encode("hello world!");
// x = "hello%20world%21"
let y = uri-pct::decode(x);
// y = "hello world!"

无运行时依赖