On Tuesday, August 19, 2014 8:04:29 AM UTC-4, Ning Yin wrote:
> I was trying to convert an array of char's to string, and I've noticed
> functions such as string or CharString, but non of these seem to work for
> my case:
>
> Julia console:
> ==============
> julia> a = ['a', 'b', 'c']
>
CharString is deprecated in Julia 0.3. You can, however, do:
utf32(a)
on an array of Char. See the documentation for utf32 in the manual.
