rustHow do you format a Rust string?
Rust strings are immutable and stored as UTF-8 encoded data. To format a Rust string, you can use the format!
macro. This macro takes a format string and a list of arguments, and returns a String
object.
let name = "John";
let age = 30;
let formatted_string = format!("My name is {}, and I am {} years old.", name, age);
println!("{}", formatted_string);
Output example
My name is John, and I am 30 years old.
The format!
macro works by taking a format string and a list of arguments. The format string contains placeholders for the arguments, which are replaced with the values of the arguments when the macro is evaluated. The placeholders are written in the form {}
, and the arguments are separated by commas.
The list of arguments can contain any type of value, including strings, numbers, and boolean values. The values are automatically converted to strings when they are inserted into the format string.
Helpful links
More of Rust
- How to replace all using regex in Rust?
- How to match whitespace with a regex in Rust?
- How to use regex with bytes in Rust?
- How to replace a capture group using Rust regex?
- How to use regex lookahead in Rust?
- How to match the end of a line in a Rust regex?
- How to use regex to match a double quote in Rust?
- How to parse JSON string in Rust?
- How to get an entry from a HashSet in Rust?
- How to match a URL with a regex in Rust?
See more codes...