Regular expression matching in OutputAssertionBuilder. so something like this is posible: ``` let re = Regex::new("[0-9]{2}").unwrap(); assert_cli::Assert::command(&["echo", "42"]) .stdout().matches(re) .unwrap(); ```
Regular expression matching in OutputAssertionBuilder.
so something like this is posible: