rustHow format string with fixed width in Rust
Formatting strings with fixed width in Rust can be done using the format!
macro. This macro allows you to specify the width of the string, as well as other formatting options.
Code example:
let name = "John";
let formatted_name = format!("{:10}", name);
println!("{}", formatted_name);
Output
John
Explanation of code parts:
let name = "John"
: This line declares a variable calledname
and assigns it the value of "John".let formatted_name = format!("{:10}", name)
: This line uses theformat!
macro to format thename
variable with a width of 10 characters.println!("{}", formatted_name)
: This line prints the formatted string to the console.
Helpful links:
More of Rust
- How to replace a capture group using Rust regex?
- Regex example to match multiline string in Rust?
- How to parse a file with Rust regex?
- How to use regex lookahead in Rust?
- How to use regex captures in Rust?
- How to use regex to match a group in Rust?
- How to match the end of a line in a Rust regex?
- How to perform matrix operations in Rust?
- How to use regex to match a double quote in Rust?
- How to replace strings using Rust regex?
See more codes...