rustHow can I create a newline in a string in Rust?
Creating a newline in a string in Rust is done using the \n
escape sequence. For example:
let my_string = "This is the first line\nThis is the second line";
This will output:
This is the first line
This is the second line
Code explanation
let
: This is a keyword used to declare a variable.my_string
: This is the name of the variable."This is the first line\nThis is the second line"
: This is the string assigned to the variable. The\n
is the escape sequence used to create a newline.
Helpful links
More of Rust
- How to match whitespace with a regex in Rust?
- How to calculate the sum of a Rust slice?
- How to match a URL with a regex in Rust?
- How to replace a capture group using Rust regex?
- How to parse a file with Rust regex?
- How to get an entry from a HashSet in Rust?
- How to replace strings using Rust regex?
- How to get the first element of a slice in Rust?
- How to declare a matrix in Rust?
- Example of struct private field in Rust
See more codes...