For `x::Vector{Char}`, which should I use `string(x...)` or `join(x)`?

Just do String(x). That should also reuse the memory. It does not for Vector{Char} but nonetheless is by far the fastest option.

2 Likes