data reading by a=readdlm(“file.txt”,‘;’,String), file Unicode UTF8
julia> (slow[4743516,1])
“écru”
julia> length(slow[4743516,1])
4
julia> slow[4743516,1][1]
‘é’: Unicode U+00e9 (category Ll: Letter, lowercase)
julia> slow[4743516,1][2]
ERROR: UnicodeError: invalid character index 2 (0xa9 is a continuation byte)
Stacktrace:
[1] slow_utf8_next(::Ptr{UInt8}, ::UInt8, ::Int64, ::Int64) at .\strings\string.jl:172
[2] next at .\strings\string.jl:204 [inlined]
[3] getindex(::String, ::Int64) at .\strings\basic.jl:32
julia> slow[4743516,1][3]
‘c’: ASCII/Unicode U+0063 (category Ll: Letter, lowercase)
julia> slow[4743516,1][4]
‘r’: ASCII/Unicode U+0072 (category Ll: Letter, lowercase)
julia> slow[4743516,1][5]
‘u’: ASCII/Unicode U+0075 (category Ll: Letter, lowercase)
How to read this data ?
paul