Crates.io | expression_format |
lib.rs | expression_format |
version | 1.1.3 |
source | src |
created_at | 2021-04-15 23:07:31.643188 |
updated_at | 2021-04-26 14:04:43.837203 |
description | A crate to format Rust expressions in a string, similar to f-string formatting in Python |
homepage | |
repository | https://github.com/sortmann/expression_format |
max_upload_size | |
id | 385106 |
size | 11,724 |
A crate to format and print strings with an embedded rust expression, similar to f-string formatting in Python.
Using :?
modifier.
use expression_format::ex_format;
let v = vec![1, 2, 3];
assert_eq!(ex_format!("v = {:?v}"), "v = [1, 2, 3]");
Using other modifiers (std:fmt
for details).
use expression_format::ex_format;
// Space after format specs if it doesn't ends in ?
assert_eq!(ex_format!(r#"Hello {:-<5 "x"}!"#), "Hello x----!");
assert_eq!(ex_format!("{:.5 12.3}"), "12.30000");
assert_eq!(ex_format!("{:#010x 27}!"), "0x0000001b!");
No support for *
and $
parameters.
Printing the contents of fields.
use expression_format::ex_format;
let arg = ["ipsum", "sit"];
assert_eq!(ex_format!("lorem {arg[0]} dolor {arg[1]} amet"), "lorem ipsum dolor sit amet");
Short version of ex_format!
with a complex expression.
use expression_format::short::exf;
assert_eq!(
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 expression_format::short::expl; // Short name version of ex_println!
#[derive(Debug)]
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");