5
juliaでは、CharとStringは比較できません。JuliaのCharをStringに変換するには?
julia> 'a' == "a"
false
文字列値に変換するにはどうすればよいですか?
私は以下の機能を試しましたが、どれも機能しません。
julia> convert(String, 'a')
ERROR: MethodError: Cannot `convert` an object of type Char to an object of type String
julia> String('a')
ERROR: MethodError: Cannot `convert` an object of type Char to an object of type String
julia> parse(String, 'a')
ERROR: MethodError: no method matching parse(::Type{String}, ::Char)