Crates.io | cattocol |
lib.rs | cattocol |
version | 0.3.1 |
source | src |
created_at | 2023-05-04 19:25:13.833224 |
updated_at | 2023-05-25 09:13:39.21748 |
description | Combine two text into one text as columns. |
homepage | https://github.com/pic16f877ccs/cattocol |
repository | https://github.com/pic16f877ccs/cattocol |
max_upload_size | |
id | 857028 |
size | 79,188 |
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
GNU General Public License v3.0