格式化字符串,具有常量字符数

时间:2015-08-29 14:49:37

标签: rust

我希望我的字符串显示为4个字符,如下所示:"a" - >我"a "format!("{}", "a")

我阅读了format documentation,并尝试了多种解决方案,例如{:<4},但它没有用。

1 个答案:

答案 0 :(得分:6)

作为fjh says,这有效:

fn main() {
    assert_eq!("a   ", format!("{:<4}", 'a'));
    assert_eq!("a   ", format!("{:<4}", "a"));
}