invisible_unicode 1.0.0

Library for finding invisible unicode characters.
Documentation
  • Coverage
  • 0%
    0 out of 4 items documented0 out of 0 items with examples
  • Size
  • Source code size: 13.78 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.66 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • poohpooher/invisible_unicode
    3 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • poohpooher

invisible_unicode

  • 문자열에서 보이지 않는 문자(unicode) 검사

sample

let name = "abcd ";
let checker = InvisibleChecker::builder().build();
if checker.has_invisible_char(&name) {
    println!("contains invisible char");
}