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
This seems related to the fixes put in place for issue #24, but I'm now seeing NULL values returned for any string which contains an escaped backslash.
Given the following code I'd expect name to contain the value John\ Smith. Instead, it's returned as NULL.
Hi, this is expected.
I've fixed the issue with parsing strings when using string setting functions, however it does not apply to this case. "{\"name\":\"John\\ Smith\"}" will become {"name":"John\ Smith"} before being passed to json_parse_string and, since it's not a valid json string, NULL will be returned.
This seems related to the fixes put in place for issue #24, but I'm now seeing
NULL
values returned for any string which contains an escaped backslash.Given the following code I'd expect
name
to contain the valueJohn\ Smith
. Instead, it's returned asNULL
.The text was updated successfully, but these errors were encountered: