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 a capture group using Rust regex?
- How to match whitespace with a regex in Rust?
- How to replace all matches using Rust regex?
- How to replace strings using Rust regex?
- How to split a string with Rust regex?
- Regex example to match multiline string in Rust?
- Bitwise XOR operator usage in Rust
- How to convert a Rust HashMap to a BTreeMap?
- How to match digits with regex in Rust?
- How to reverse a Rust slice?
See more codes...