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 replace a capture group using Rust regex?
- How to replace all matches using Rust regex?
- How to use non-capturing groups in Rust regex?
- How to perform matrix operations in Rust?
- How to map a Rust slice?
- How to replace strings using Rust regex?
- How to use negation in Rust regex?
- Regex example to match multiline string in Rust?
- Yield example in Rust
- How to use regex captures in Rust?
See more codes...