对URI组件或字符串进行百分比编码/解码
由 tony-o 编写
#2373 in 编码
4KB 55 行
此包提供了一个编码/解码字符串的功能接口。它尽可能解码格式不正确的字符串(例如 "%2%20%" => " ")。
"%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!"