This is a library for work with coloured and formatted strings on ANSI terminals.
Its a library agnostic library. Therefore it can be used with any ansi color library. (e.g. owo-colors, nu-ansi-term).
```rust use ansistr::AnsiStr; use owocolors::{colors::*, OwoColorize};
pub fn main() {
let coloredtext = "When the night has come"
.fg::
let s = colored_text.ansi_get(5..).unwrap();
println!("{}", colored_text);
println!("{}", s);
} ```
Running this code will result in the following output.
The library has derivatived from zhiburt/ansi-cut