“Rust Conatenate Strings” Kod odpowiedzi

Jak połączyć dwa

// using 2 variables
let new_string = format!("{}{}", first_string, second_string);
// using 2 literals
let new_string = format!("{}{}", "first string ", "second string");
Air4x

let text1 = "hello".to_owned();
let text2 = text1 + " world";
println!("{}", text2);
Mackerel

let s = concat!("test", 10, 'b', true); // concatenates string literals
assert_eq!(s, "test10btrue");
Maou Shimazu

Odpowiedzi podobne do “Rust Conatenate Strings”

Pytania podobne do “Rust Conatenate Strings”

Więcej pokrewnych odpowiedzi na “Rust Conatenate Strings” w Rust

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu