julia> s = "SST" "SST" julia> strchr(s,'S') 0x00000001 julia> typeof(ans) Uint32 This behavior seems different than what shows in the "Strings" manual page; perhaps one or the other should be changed?
julia> s = "SST"
"SST"
julia> strchr(s,'S')
0x00000001
julia> typeof(ans)
Uint32
This behavior seems different than what shows in the "Strings" manual page; perhaps one or the other should be changed?