4 releases
0.5.3 | Jun 8, 2024 |
---|---|
0.5.2 | Aug 24, 2022 |
0.5.1 | Aug 16, 2021 |
0.5.0 | Apr 17, 2020 |
#249 in Encoding
197,050 downloads per month
Used in 92 crates
(10 directly)
13KB
216 lines
escape8259
performs RFC8259-compliant string escaping and un-escaping.
RFC8259 is a JSON encoding standard. Many JSON encoders exist, but other RFCs use the same string escaping mechanism, so it's useful to be able to access the string escaping functions by themselves.
Examples
use escape8259::{escape, unescape};
let s = "A null (\0) and a double-quote (\")";
assert_eq!(escape(s), r#"A null (\u0000) and a double-quote (\")"#);
let crab = r#"This is a crab: \ud83e\udd80"#;
assert_eq!(unescape(crab).unwrap(), "This is a crab: 🦀");
// We accept encodings that weren't really necessary.
assert_eq!(unescape(r#"\u0041\n"#).unwrap(), "A\n");
let multiline = r#"hello
world"#;
assert_eq!(escape(multiline), r#"hello\n world"#);
lib.rs
:
escape8259
performs RFC8259-compliant string escaping and un-escaping.
RFC8259 is a JSON encoding standard. Many JSON encoders exist, but other RFCs use the same string escaping mechanism, so it's useful to be able to access the string escaping functions by themselves.
Examples
use escape8259::{escape, unescape};
let s = "A null (\0) and a double-quote (\")";
assert_eq!(escape(s), r#"A null (\u0000) and a double-quote (\")"#);
let crab = r#"This is a crab: \ud83e\udd80"#;
assert_eq!(unescape(crab).unwrap(), "This is a crab: 🦀");
// We accept encodings that weren't really necessary.
assert_eq!(unescape(r#"\u0041\n"#).unwrap(), "A\n");
let multiline = r#"hello
world"#;
assert_eq!(escape(multiline), r#"hello\n world"#);