如何在no_std环境中连接字符串?

时间:2019-05-08 16:30:24

标签: string rust concatenation

我试图在不使用std的情况下串联两个字符串(&str)或在Rust中的字符串中转换字节数组。我看到了core::str::from_utf8,但这不是我想要的。

我正在搜索类似

let b: [u8; 2] = [97, 98];
let result: &str = core::str::array_to_string(b); // "ab"

let a: &str = "Hello ";
let b: &str = "world !";
let result: &str = core::str::concatenate(a, b);

0 个答案:

没有答案