You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using Parsers
opts = Parsers.Options(; quoted=true)
str =""""key" "value""""
r = Parsers.xparse(String, str, 1, length(str), opts)
@show r.tlen
changed from showing 6 to 14. This to me suggests that the parsing no longer stops at the closing delimiter which seems like a regression, but I am not sure.
The text was updated successfully, but these errors were encountered:
It seems adding delim=nothing to Parsers.Options gets me back to the previous behavior but not 100% sure. But that make this Option behave differently in some other contexts so it isn't ideal. For now, I worked around it by having one Option for parsing strings and a different one for parsing other stuff.
After #127 the following
changed from showing 6 to 14. This to me suggests that the parsing no longer stops at the closing delimiter which seems like a regression, but I am not sure.
The text was updated successfully, but these errors were encountered: