We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Trailing newline character is not handled effectively while parsing a JsonPath. Consider below example,
jsonDocument:
{ "level_0": { "level_1": { "level_2": "At level 2" } } }
jsonPath: $.level_0.level_1.level_2\n
$.level_0.level_1.level_2\n
JsonPath.read(jsonDocument, jsonPath) would evaluate to null
JsonPath.read(jsonDocument, jsonPath)
null
This was handled earlier and was removed in this code change.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Trailing newline character is not handled effectively while parsing a JsonPath. Consider below example,
jsonDocument:
jsonPath:
$.level_0.level_1.level_2\n
JsonPath.read(jsonDocument, jsonPath)
would evaluate tonull
This was handled earlier and was removed in this code change.
The text was updated successfully, but these errors were encountered: