1 stable release

1.0.0 Oct 23, 2023

#316 in Template engine

Download history 5/week @ 2024-01-08 24/week @ 2024-01-15 10/week @ 2024-01-29 10/week @ 2024-02-19 27/week @ 2024-02-26 6/week @ 2024-03-04 10/week @ 2024-03-11 7/week @ 2024-03-18 6/week @ 2024-03-25 53/week @ 2024-04-01

77 downloads per month
Used in 4 crates (3 directly)

MIT/Apache

6KB

Late format

This crate provides a simple way of formatting parameters in a runtime string, with runtime parameter names.

This is an alternative to using complex template engines.

Example

use late_format::LateFormat;
use maplit::hashmap;

let user_string: String = "some user string: {id}".into();
assert_eq!(
    "some user string: x",
    user_string.late_format(hashmap!{"id".into() => "x".into()})
);

let user_string: String = r#"some user string: {"id"}"#.into();
assert_eq!(
    "some user string: id",
    user_string.late_format(hashmap!{"id".into() => "x".into()})
);

let user_string: String = r#"some user string: {  "id"  }"#.into();
assert_eq!(
    "some user string: id",
    user_string.late_format(hashmap!{"id".into() => "x".into()})
);

let user_string: String = "some user string: {id}".into();
assert_eq!(
    "some user string: None",
    user_string.late_format(hashmap!{})
);

Dependencies

~2.5–4MB
~72K SLoC