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 variables1
and assigns it the valueHello
.let s2 = "World";
- This declares a string variables2
and assigns it the valueWorld
.let s3 = s1 + " " + s2;
- This declares a string variables3
and assigns it the value ofs1
concatenated with a space ands2
.println!("{}", s3);
- This prints the value ofs3
to the console.
Helpful links
More of Rust
- How to match whitespace with a regex in Rust?
- How to replace a capture group using Rust regex?
- How to replace all matches using Rust regex?
- How to replace strings using Rust regex?
- How to convert struct to bytes in Rust
- How to use Unicode in a regex in Rust?
- How to match a URL with a regex in Rust?
- How to zip two vectors in Rust?
- How to loop through enum in Rust
- How to parse a file with Rust regex?
See more codes...