rustHow to format string in Rust
String formatting in Rust is done using the format!
macro. This macro allows you to create a formatted string with placeholders for values that will be filled in later.
Code example:
let name = "John";
let age = 30;
println!("{} is {} years old", name, age);
Output
John is 30 years old
Explanation of code parts:
let name = "John";
- This line declares a variable calledname
and assigns it the value of "John".let age = 30;
- This line declares a variable calledage
and assigns it the value of 30.println!("{} is {} years old", name, age);
- This line uses theformat!
macro to print out a formatted string with the values ofname
andage
in the appropriate places.
Helpful links:
More of Rust
- How to replace a capture group using Rust regex?
- How to use regex with bytes in Rust?
- How to get an entry from a HashSet in Rust?
- How to replace strings using Rust regex?
- Regex example to match multiline string in Rust?
- How to use regex to match a double quote in Rust?
- How to match the end of a line in a Rust regex?
- How to perform matrix operations in Rust?
- How to parse JSON string in Rust?
- How to use regex to match a group in Rust?
See more codes...