rustHow to format multiline string in Rust
In Rust, you can format multiline strings using the format!
macro. This macro allows you to create a string with placeholders that can be replaced with values.
Code example:
let name = "John";
let age = 30;
let multiline_string = format!("My name is {},
I am {} years old.", name, age);
println!("{}", multiline_string);
Output
My name is John,
I am 30 years old.
Explanation of code parts:
let name = "John";
: This line declares a variablename
and assigns it the value"John"
.let age = 30;
: This line declares a variableage
and assigns it the value30
.let multiline_string = format!("My name is {}, I am {} years old.", name, age);
: This line uses theformat!
macro to create a multiline string with placeholders for the values ofname
andage
.println!("{}", multiline_string);
: This line prints the multiline string to the console.
Helpful links:
More of Rust
- How to match a URL with a regex in Rust?
- How to replace a capture group using Rust regex?
- How to clear a Rust HashMap?
- Yield example in Rust
- Example of yield_now in Rust?
- How to convert a Rust slice to a fixed array?
- How to use regex to match a group in Rust?
- How to convert a Rust HashMap to a BTreeMap?
- How to yield a thread in Rust?
- How to replace strings using Rust regex?
See more codes...