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 variablenameand assigns it the value"John".let age = 30;: This line declares a variableageand 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 ofnameandage.println!("{}", multiline_string);: This line prints the multiline string to the console.
Helpful links:
More of Rust
- How do I identify unused variables in Rust?
- How to replace a capture group using Rust regex?
- How to match the end of a line in a Rust regex?
- How to use non-capturing groups in Rust regex?
- How to use regex captures in Rust?
- How to use negation in Rust regex?
- Regex example to match multiline string in Rust?
- How to use regex lookbehind in Rust?
- How to use regex to match a double quote in Rust?
- Generator example in Rust
See more codes...