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 escape dots with regex in Rust?
- How to use binary regex in Rust?
- How to replace strings using Rust regex?
- How to escape a Rust regex?
- How to make regex case insensitive in Rust?
- How to replace a capture group using Rust regex?
- How to match a URL with a regex in Rust?
- How to use regex lookahead in Rust?
- How to ignore case in Rust regex?
- How to use regex captures in Rust?
See more codes...