ansitok

Crates.ioansitok
lib.rsansitok
version0.3.0
created_at2022-07-19 07:48:16.497186+00
updated_at2025-01-30 20:44:36.55549+00
descriptionA library for parsing ANSI Escape Codes
homepagehttps://gitlab.com/zhiburt/ansitok
repositoryhttps://gitlab.com/zhiburt/ansitok
max_upload_size
id628131
size79,825
Maxim Zhiburt (zhiburt)

documentation

README

ansi escape codes tokenization

gitlab crates.io docs.rs build status

This is a library for parsing ANSI escape sequences.

The list of covered sequences.

  • Cursor Position
  • Cursor {Up, Down, Forward, Backward}
  • Cursor {Save, Restore}
  • Erase Display
  • Erase Line
  • Set Graphics mode
  • Set/Reset Text Mode

Usage

let text = "\x1b[31;1;4mHello World\x1b[0m";

for e in parse_ansi(text) {
    match e.kind() {
        ElementKind::Text => {
            println!("Got a text: {:?}", &text[e.range()],);
        }
        _ => {
            println!(
                "Got an escape sequence: {:?} from {:#?} to {:#?}",
                e.kind(),
                e.start(),
                e.end()
            );
        }
    }
}

no_std support

no_std is supported via disabling the std feature in your Cargo.toml.

Notes

The project got an insiration from https://gitlab.com/davidbittner/ansi-parser.

Commit count: 29

cargo fmt