rustHow to format const string in Rust
Rust provides a number of ways to format const strings. The most common way is to use the format! macro. This macro takes a format string and a list of arguments and returns a String object.
Code example:
let name = "John";
let age = 30;
let formatted_string = format!("My name is {}, and I am {} years old.", name, age);
println!("{}", formatted_string);
Output
My name is John, and I am 30 years old.
Explanation:
- The
format!macro takes a format string and a list of arguments and returns aStringobject. - The format string is a string literal that contains placeholders for the arguments. The placeholders are surrounded by curly braces
{}. - The arguments are passed after the format string and are separated by commas.
- The
println!macro is used to print the formatted string to the console.
Helpful links:
More of Rust
- How to get execution time in Rust
- How to iterate over a Rust slice with an index?
- How to borrow from vector in Rust
- How to match whitespace with a regex in Rust?
- How to find the first match in a Rust regex?
- How to iterate an array with index in Rust
- How to calculate the inverse of a matrix in Rust?
- How to use a BuildHasher in Rust?
- Example box expression in Rust
- How do I create a class variable in Rust?
See more codes...