Answers for "concat string rust"

3

how to concatenate two &str in rust

// using 2 variables
let new_string = format!("{}{}", first_string, second_string);
// using 2 literals
let new_string = format!("{}{}", "first string ", "second string");
Posted by: Guest on March-18-2021
2

rust concatenate strings

let text1 = "hello".to_owned();
let text2 = text1 + " world";
println!("{}", text2);
Posted by: Guest on March-14-2021

Browse Popular Code Answers by Language