fn winnow(mut list: Vec<String>) -> (Conf, Vec<String> ) {
list.retain(|x| x != ""); // only keep nonempty
+ // Search bullets
+ let bullet = Regex::new(r"^(\s*[\*-]\s*)").unwrap();
+
let conf = Conf {
+ bullet: match bullet.captures(&list[0]) {
+ None => "".to_string(),
+ Some(x) => x.get(1).unwrap().as_str().to_string(),
+ },
};
// Remove patterns and trim
for l in &mut *list {
+ *l = bullet.replace_all(&l, "").to_string();
*l = l.trim().to_owned();
}
list.retain(|x| x != ""); // again
fn output(conf: &Conf, prio: &Vec<f64>, ranked: &Vec<String>) {
for (p, l) in prio.iter().zip(ranked.iter()) {
- println!("{:2.0} %\t{}", p * 100.0, l);
+ println!(
+ "{}{:2.0} %\t{}",
+ &conf.bullet,
+ p * 100.0,
+ l);
}
}
}
struct Conf {
+ bullet: String,
}
#[derive(Parser, Debug)]
assert_eq!(exp, res);
}
+
+#[test]
+
+fn bullets() {
+
+ let arg: Vec<String> =
+ "\n * Hej du\t\n - glade\n-\tta en\n\n" // Convert &str to String
+ .split("\n").map(|x| x.to_owned()) // with `.to_owned()` or
+ .collect(); // `.to_string()`
+ let exp: Vec<String> =
+ "Hej du\nglade\nta en"
+ .split("\n").map(|x| x.to_owned()).collect();
+ let (conf, res ) = winnow(arg);
+ assert_eq!(exp, res);
+ assert_eq!(conf.bullet, " * ".to_owned());
+
+}
+
+#[test]
+
+fn bullout() {
+ let conf = Conf {bullet: " * ".to_owned()};
+ let prio = vec![0.6, 0.3, 0.1];
+ let ranked: Vec<String> =
+ "Hej du\nglade\nta en"
+ .split("\n").map(|x| x.to_owned()).collect();
+ output(&conf, &prio, &ranked);
+}