#template-string #template #string #run-time

new_string_template

Simple Customizable String-Templating Library for Rust

10 stable releases

1.5.3 Aug 2, 2024
1.5.1 Apr 6, 2024
1.4.0 Aug 30, 2022
1.3.1 May 26, 2022
1.0.0 May 28, 2021

#41 in Template engine

Download history 7922/week @ 2024-08-19 5810/week @ 2024-08-26 7033/week @ 2024-09-02 6542/week @ 2024-09-09 8779/week @ 2024-09-16 10290/week @ 2024-09-23 8610/week @ 2024-09-30 10608/week @ 2024-10-07 8010/week @ 2024-10-14 9388/week @ 2024-10-21 8528/week @ 2024-10-28 7211/week @ 2024-11-04 5120/week @ 2024-11-11 5534/week @ 2024-11-18 4737/week @ 2024-11-25 4666/week @ 2024-12-02

20,814 downloads per month
Used in 3 crates

MIT license

29KB
356 lines

New String Template

Simple Customizable String-Templating Library for Rust.

This Library is inspired by string_template

Usage

Add this to your Cargo.toml (or use cargo-add):

[dependencies]
new_string_template = "1.5"

Example with 2 data points (with fail enabled):

use new_string_template::template::Template;
use std::collections::HashMap;

fn main() {
    let templ_str = "Something {data1} be {data2}, and { not here }";
    let templ = Template::new(templ_str);
    let data = {
        let mut map = HashMap::new();
        map.insert("data1", "should");
        map.insert("data2", "here");
        map
    };

    let rendered = templ.render(&data).expect("Expected Result to be Ok");
    assert_eq!("Something should be here, and { not here }", rendered);
}

Example with 1 data point (with fail disabled):

use new_string_template::template::Template;
use std::collections::HashMap;

fn main() {
    let templ_str = "Something {data1} be {data2}, and { not here }";
    let templ = Template::new(templ_str);
    let data = {
        let mut map = HashMap::new();
        map.insert("data1", "should");
        // map.insert("data2", "here");
        map
    };

    let rendered = templ.render_nofail(&data);
    assert_eq!("Something should be {data2}, and { not here }", rendered);
}

Example with Custom Regex:

use new_string_template::template::Template;
use std::collections::HashMap;
use regex::Regex;

fn main() {
    // The following regex requires at least one space between "{{" and "}}" and allows variables with spaces
    let custom_regex = Regex::new(r"(?mi)\{\{\s+([^\}]+)\s+\}\}").unwrap();
    let templ_str = "Something {{ data1 }} be {{ data2 }}, and {{ data 3 }}";
    let templ = Template::new(templ_str).with_regex(&custom_regex);
    let data = {
        let mut map = HashMap::new();
        map.insert("data1", "should");
        map.insert("data2", "here");
        map.insert("data 3", "here too");
        map
    };

    let rendered = templ.render_nofail(&data);
    assert_eq!("Something should be here, and here too", rendered);
}

Note: with the default regex, a template-variable can have spaces or none at all.

Working on this Project

This project requires:

  • Rust install with rustfmt & clippy (nightly version of mentioned components), see fmt.sh and clippy.sh

Dependencies

~2.2–3MB
~55K SLoC