Closed olejech closed 9 months ago
I would like to copy json path without separator for root node. Like this:
{"one": {"two": "ok"}}
It's will be equal: one.two
one.two
I believe this would work: require("jsonpath").get():sub(2, -1)
require("jsonpath").get():sub(2, -1)
Awesome! Thanks!
I would like to copy json path without separator for root node. Like this:
It's will be equal:
one.two