sc_decode

Crates.iosc_decode
lib.rssc_decode
version0.1.2
sourcesrc
created_at2023-09-07 14:57:07.647822
updated_at2023-09-07 16:24:17.741129
descriptionSpecial character decoding
homepage
repositoryhttps://github.com/flunas/sc_decode.git
max_upload_size
id966306
size4,291
(flunas)

documentation

README

sc_decode

sc_decode 是一个对特殊字符进行解码的小工具。

有个别特殊字符解码后使用format!格式化后会有 \ ,需自行去除。

Method

decode - 对特殊字符进行解码

Examples

let arg = "123%40gmail.com";
let val = sc_decode::decode(arg);

assert_eq("123@gmail.com", val);
Commit count: 7

cargo fmt