如何将String附加到另一个String?

时间:2015-07-01 08:52:58

标签: string concatenation rust

如果我有两个String,如何使用稳定的Rust将一个附加到另一个?这是一个简单的问题,但stackoverflow认为我显然不够冗长。这是一些额外的文字。

1 个答案:

答案 0 :(得分:2)

来自here

  

如果你有一个String,你可以将& str连接到它的结尾:

     

let hello = "Hello ".to_string(); let world = "world!";

     

let hello_world = hello + world;

     

但如果您有两个字符串,则需要&:

     

let hello = "Hello ".to_string();

     

let world = "world!".to_string();

     

let hello_world = hello + &world;