rustHow do I add two strings together in Rust?
Adding two strings together in Rust is a simple process. The + operator is used to concatenate two strings. For example:
let s1 = "Hello";
let s2 = "World";
let s3 = s1 + " " + s2;
println!("{}", s3);
This code will output Hello World.
Code explanation
let s1 = "Hello";- This declares a string variables1and assigns it the valueHello.let s2 = "World";- This declares a string variables2and assigns it the valueWorld.let s3 = s1 + " " + s2;- This declares a string variables3and assigns it the value ofs1concatenated with a space ands2.println!("{}", s3);- This prints the value ofs3to the console.
Helpful links
More of Rust
- How to use regex to match a double quote in Rust?
- How to match the end of a line in a Rust regex?
- How to perform matrix operations in Rust?
- How to find the first match in a Rust regex?
- How to create a HashMap of pointers in Rust?
- How to sort a Rust HashMap?
- How to use a tuple as a key in a Rust HashMap?
- How to join two Rust HashMaps?
- Rust HashMap example
- Yield example in Rust
See more codes...