ansi-cut Build Status codecov Crate docs.rs license

A library for cutting a string while preserving its colors.

Usage

```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);

} ```

Chunks

There's a handy function wich splits a string to a set of chunks. It works with chars not bytes so things like emojies and hieroglyph are are handled with no panic.

```rust use owo_colors::{colors::*, OwoColorize};

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

let chunks = ansi_cut::chunks(colored_text, 5);

} ```

Question

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