17 unstable releases

0.9.0 Apr 6, 2024
0.8.0 Apr 25, 2021
0.7.0 Oct 5, 2020
0.6.5 May 10, 2019

#622 in Parser implementations

Download history 231/week @ 2024-01-01 324/week @ 2024-01-08 396/week @ 2024-01-15 425/week @ 2024-01-22 311/week @ 2024-01-29 235/week @ 2024-02-05 391/week @ 2024-02-12 336/week @ 2024-02-19 324/week @ 2024-02-26 263/week @ 2024-03-04 497/week @ 2024-03-11 329/week @ 2024-03-18 1156/week @ 2024-03-25 801/week @ 2024-04-01 472/week @ 2024-04-08 776/week @ 2024-04-15

3,251 downloads per month
Used in 17 crates (10 directly)

MPL-2.0 license

26KB
588 lines

pipeline status docs deps license downloads

Ansi Escape Sequence Parser

For a complete list of implemented sequences, see the documentation.

This is done through a pulldown type parser, where an iterator is exposed. This essentially turns all of the ANSI sequences into enums and splits the string at every location that there was an ANSI Sequence.

Example:

use ansi_parser::{Output, AnsiParser};
use ansi_parser::AnsiSequence;

fn main() {
    //Parse the first two blocks in the list
    //By parsing it this way, it allows you to iterate over the
    //elements returned.
    //
    //The parser only every holds a reference to the data,
    //so there is no allocation.
    let parsed: Vec<Output> = "This is \u{1b}[3Asome text!"
        .ansi_parse()
        .take(2)
        .collect();

    assert_eq!(
        vec![
            Output::TextBlock("This is "),
            Output::Escape(AnsiSequence::CursorUp(3))
        ],
        parsed
    );

    for block in parsed.into_iter() {
        match block {
            Output::TextBlock(text) => println!("{}", text),
            Output::Escape(seq)     => println!("{}", seq)
        }
    }
}

no_std support

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

Dependencies

~1.5MB
~33K SLoC