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 callednameand assigns it the value of "John".let age = 30;- This line declares a variable calledageand 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 ofnameandagein the appropriate places.
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 use regex captures in Rust?
- How to use binary regex in Rust?
- How to use regex to match a double quote in Rust?
- How to perform matrix operations in Rust?
- How to lock a Rust HashMap?
- How to compare two Rust HashMaps?
- How to convert a Rust slice of u8 to a string?
- How to iterate over a Rust HashMap?
See more codes...