collections::fmt::format

Function collections::fmt::format

pub fn format(args: Arguments) -> String

The format function takes a precompiled format string and a list of arguments, to return the resulting formatted string.

Arguments

  • args - a structure of arguments generated via the format_args! macro.

Examples

Basic usage:

use std::fmt;

let s = fmt::format(format_args!("Hello, {}!", "world"));
assert_eq!(s, "Hello, world!");

Please note that using format! might be preferrable. Example:

let s = format!("Hello, {}!", "world");
assert_eq!(s, "Hello, world!");

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/collections/fmt/fn.format.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部