A crate to format and print strings with an embedded rust expression.
Using :?
modifier.
```
use expressionformat::exformat;
let v = vec![1, 2, 3];
asserteq!(exformat!("v = {:?v}"), "v = [1, 2, 3]");
Printing the contents of fields. ``` use expressionformat::exformat; let arg = ["ipsum", "sit"]; asserteq!(exformat!("lorem {arg[0]} dolor {arg[1]} amet"), "lorem ipsum dolor sit amet");
Short version of ex_format!
with a complex expression.
```
use expressionformat::short::exf;
asserteq!(
exf!(r#"Hello { { // Space after the first { since {{ is an escape sequence.
let first = "Wo";
let second = "rld";
let mut result = String::from(first);
result.push_str(second);
result
}}!"#),
"Hello World!"
);
Print to standard output with a new line. ``` use expressionformat::short::expl; // Short name version of exprintln!
struct Point {x: i32, y: i32} expl!("value of point = {:?Point {x: 1 + 2, y: 3 * 4 }}"); // stdout: value of point = Point { x: 3, y: 12 }
Escape brackets with {{
and }}
.
use expression_format::short::exf;
let value = 10;
assert_eq!(exf!("{{value}} = {value}"), "{value} = 10");