-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Labels
breakingThis change will break codeThis change will break codebugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorneeds decisionA decision on this change is neededA decision on this change is needed
Milestone
Description
Found this on stackoverflow
julia> a = "æøå"
"æøå"
julia> a[2:end]
"øå"
julia> b = SubString(a,1)
"æøå"
julia> b[2:end]
ERROR: invalid SubString indexes
in getindex at ./string.jl:657
I'm not sure what the correct behaviour should be, but having them different seems wrong. Some relevant discussion in #5446
Metadata
Metadata
Assignees
Labels
breakingThis change will break codeThis change will break codebugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorneeds decisionA decision on this change is neededA decision on this change is needed