ansi-cut Build Status codecov Crate docs.rs license

A library for cutting a string while preserving colors.

Example

```rust use ansicut::AnsiCut; use owocolors::{colors::*, OwoColorize};

pub fn main() { let coloredtext = "When the night has come" .fg::() .bg::() .tostring(); let cuttedtext = coloredtext.cut(5..);

println!("{}", cutted_text);

} ```

Question

Are any other usefull ansi sequense that would be usefull to keep in mind?