4 releases

Uses old Rust 2015

0.2.1 Jan 14, 2025
0.2.0 Aug 9, 2023
0.1.2 Aug 8, 2023
0.1.1 Aug 24, 2021
0.1.0 Feb 2, 2018

#27 in Text processing

Download history 72738/week @ 2024-12-27 122602/week @ 2025-01-03 155797/week @ 2025-01-10 144643/week @ 2025-01-17 149361/week @ 2025-01-24 159675/week @ 2025-01-31 232739/week @ 2025-02-07 232550/week @ 2025-02-14 332530/week @ 2025-02-21 315884/week @ 2025-02-28 233489/week @ 2025-03-07 199956/week @ 2025-03-14 280163/week @ 2025-03-21 191988/week @ 2025-03-28 174935/week @ 2025-04-04 171890/week @ 2025-04-11

866,565 downloads per month
Used in 577 crates (187 directly)

Apache-2.0/MIT

10KB
126 lines

Continuous integration crates.io

A crate for stripping ANSI escape sequences from byte sequences.

This can be used to take output from a program that includes escape sequences and write it somewhere that does not easily support them, such as a log file.

Examples

The strip function accepts bytes and returns a Vec of bytes with ANSI escape sequences removed.

extern crate strip_ansi_escapes;

use std::io::{self, Write};

fn work() -> io::Result<()> {
  let bytes_with_colors = b"\x1b[32mfoo\x1b[m bar";
  let plain_bytes = strip_ansi_escapes::strip(&bytes_with_colors);
  io::stdout().write_all(&plain_bytes)?;
  Ok(())
}

fn main() {
    work().unwrap();
}

For writing directly to a writer, the Writer struct may be preferable.

extern crate strip_ansi_escapes;

use std::io::{self, Write};
use strip_ansi_escapes::Writer;

fn work() -> io::Result<()> {
  let bytes_with_colors = b"\x1b[32mfoo\x1b[m bar";
  let mut writer = Writer::new(io::stdout());
  // Only `foo bar` will be written to stdout
  writer.write_all(bytes_with_colors)?;
  Ok(())
}

fn main() {
    work().unwrap();
}

License

Licensed under either of

at your option.

Dependencies

~245–385KB