rustHow to concat strings in Rust
Strings in Rust can be concatenated using the + operator. The following ## Code example shows how to concatenate two strings:
let s1 = "Hello";
let s2 = "World";
let s3 = s1 + " " + s2;
println!("{}", s3);
Output
Hello World
The code above does the following:
- Declares two strings
s1ands2with the valuesHelloandWorldrespectively. - Concatenates the two strings using the
+operator and assigns the result tos3. - Prints the value of
s3to the console.
For more information on string concatenation in Rust, please refer to the following links:
More of Rust
- How to use non-capturing groups in Rust regex?
- How to perform matrix operations in Rust?
- How to use regex lookbehind in Rust?
- How to convert a Rust slice of u8 to u32?
- How to sort a Rust HashMap?
- How to use regex lookahead in Rust?
- How to use regex to match a double quote in Rust?
- Regex example to match multiline string in Rust?
- How to sort the keys in a Rust HashMap?
- How to declare a constant Rust HashMap?
See more codes...