4 releases (2 breaking)
0.3.1 | May 25, 2023 |
---|---|
0.3.0 | May 25, 2023 |
0.2.0 | May 21, 2023 |
0.1.0 | May 4, 2023 |
#1637 in Text processing
Used in seven_seg
45KB
853 lines
cattocol
This crate provided various options for combining text.
- Without the ansi escpe sequences.
- With the ansi escpe sequences.
- Along the lines of the first text.
- Iteration on non empty lines.
Examples
use cattocol::CatToCol;
let first_txt = String::from("It's a\nit's raining\nnortherly wind.");
let second_txt = String::from("beautiful day,\nwith a\n\n");
let cattocol = CatToCol::new().fill(' ').repeat(0);
let text = "It's a beautiful day,\nit's raining with a\nnortherly wind.\n";
let concatenated_txt = cattocol.combine_col(&first_txt, &second_txt).collect::<String>();
assert_eq!(concatenated_txt, text);
println!("{}", concatenated_txt);
//It's a beautiful day,
//it's raining with a
//northerly wind.
use cattocol::cat_to_col;
let first_txt = String::from("It's a\nit's raining\nnortherly wind.");
let second_txt = String::from("beautiful day,\nwith a\n\n");
let text = "It's a beautiful day,\nit's raining with a\nnortherly wind. \n";
let concatenated_txt = cat_to_col(&first_txt, &second_txt).collect::<String>();
assert_eq!(concatenated_txt, text);
println!("{}", concatenated_txt);
//It's a beautiful day,
//it's raining with a
//northerly wind.
use cattocol::by_pairs;
let first_txt = "one horsepower\ntwo horsepower\nthree horsepower\nfour horsepower\n";
let second_txt = "per horse\ntwo horses\n";
let concatenated_txt = by_pairs(first_txt, second_txt).collect::<String>();
assert_eq!( &concatenated_txt, "one horsepower per horse\ntwo horsepower two horses\n");
println!("{}", concatenated_txt);
//one horsepower per horse
//two horsepower two horses
License
GNU General Public License v3.0
Dependencies
~250–335KB