“Concat String Rust” Ответ

Как объединить два

// 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

fn main() {
  let mut string = String::from("Hello");

  string.push_str(" World");
  
  println!("{}", string);
}
Ahmad Khaefi

Ответы похожие на “Concat String Rust”

Вопросы похожие на “Concat String Rust”

Больше похожих ответов на “Concat String Rust” по Rust

Смотреть популярные ответы по языку

Смотреть другие языки программирования