sc_decode 0.1.2

Special character decoding
Documentation
  • Coverage
  • 100%
    2 out of 2 items documented1 out of 1 items with examples
  • Size
  • Source code size: 4.29 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 115.92 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 7s Average build duration of successful builds.
  • all releases: 7s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • flunas/sc_decode
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • flunas

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);