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 match the end of a line in a Rust regex?
- How to add an entry to a Rust HashMap?
- How to use regex captures in Rust?
- How to use binary regex in Rust?
- How to use named capture groups in Rust regex?
- Regex example to match multiline string in Rust?
- How to replace a capture group using Rust regex?
- How to use captures_iter with regex in Rust?
- How to make regex case insensitive in Rust?
- How to use regex with bytes in Rust?
See more codes...