10 个版本
0.2.9 | 2023年11月30日 |
---|---|
0.2.8 | 2022年11月2日 |
0.2.7 | 2022年3月5日 |
0.2.6 | 2021年4月21日 |
0.1.0 | 2020年6月2日 |
#198 在 Rust 模式
32,808 每月下载量
在 34 个 包(22 个直接使用)中使用
14KB
180 行
Concat With
虽然 concat!
宏在 std
中很有用,可以创建静态字符串切片(&'static str
),但它不能为这些设置分隔符。因此,该软件包提供了一个额外的 concat!
宏来处理这种情况。
assert_eq!("test10btrue", concat_with::concat!("test", 10, 'b', true));
assert_eq!("test, 10, b, true", concat_with::concat!(with ", ", "test", 10, 'b', true));
assert_eq!("test\n10\nb\ntrue", concat_with::concat_line!("test", 10, 'b', true));
还可以添加前缀和后缀。
assert_eq!("Someone says: Hello.\nSomeone says: Nice to meet you!", concat_with::concat_line!(prefix "Someone says: ", "Hello.", "Nice to meet you!"));
创建您自己的宏
可以使用 concat_impl!
宏来创建您自己的宏,例如 concat_line!
,它可以连接由特定字面量分隔的字面量。
#[doc(hidden)]
pub use concat_with::{concat, concat_impl}; // re-export `concat!` and `concat_impl!` if your custom macros use `#[macro_export]`
concat_impl! {
#[macro_export]
/// Concatenates literals into a static string slice separated by a comma and a whitespace, `, `. Prefixes and suffixes can also be added.
concat_with_comma => ", ",
#[macro_export]
/// Concatenates literals into a static string slice separated by a colon, `:`. Prefixes and suffixes can also be added.
concat_with_colon => ':',
}
assert_eq!("test, 10, b, true", concat_with_comma!("test", 10, 'b', true));
assert_eq!("test:10:b:true", concat_with_colon!("test", 10, 'b', true));
Crates.io
https://crates.io/crates/concat-with