#ascii #byte-sequences #printable #character #rules

no-std escape-bytes

Escapes bytes that are not printable ASCII characters

2 releases

0.1.1 Dec 1, 2023
0.1.0 Dec 1, 2023
0.0.1 Nov 30, 2023

#2427 in Text processing

Download history 7508/week @ 2025-10-18 8136/week @ 2025-10-25 7589/week @ 2025-11-01 8452/week @ 2025-11-08 8339/week @ 2025-11-15 7361/week @ 2025-11-22 8110/week @ 2025-11-29 10604/week @ 2025-12-06 12124/week @ 2025-12-13 6636/week @ 2025-12-20 4933/week @ 2025-12-27 11947/week @ 2026-01-03 7384/week @ 2026-01-10 12316/week @ 2026-01-17 12991/week @ 2026-01-24 12521/week @ 2026-01-31

47,834 downloads per month
Used in 128 crates (4 directly)

Apache-2.0

50KB
987 lines

escape-bytes

Escapes bytes that are not printable ASCII characters.

The exact rules are:

  • Nul is escaped as \0.
  • Tab is escaped as \t.
  • Line feed is escaped as \n.
  • Carriage return is escaed as \r.
  • Backslach is escaped as \\.
  • Any character in the printable ASCII range 0x20..=0x7e is not escaped.
  • Any other character is hex escaped in the form \xNN.

Intended for use where byte sequences are not valid ASCII or UTF-8 but need to be stored in a semi-human readable form where only ASCII or UTF-8 are permitted.

Examples

Escape

let str = b"hello\xc3world";
let escaped = escape_bytes::escape(str);
assert_eq!(escaped, br"hello\xc3world");

Unescape

let escaped = br"hello\xc3world";
let unescaped = escape_bytes::unescape(escaped)?;
assert_eq!(unescaped, b"hello\xc3world");

License: Apache-2.0

No runtime deps

Features