catull
catull
Since I am not fluent with Farsi, I have translated your inquiry, here's what I obtained: > In the name of God > Hello - when we hold our finger...
There is no solution, I am afraid. The best you can do is to state the birthdate in the Persian calendar and relating it to a Gregorian date. Or you...
It means that you have to provide a value after the ':', and no extra comma at the end, if there are no more attributes aside from "id". Either ```json...
The error message is confusing. Check this https://jsoneditoronline.org/#left=cloud.d7e0a32efe73462eb4c877e69eb98d42 It complains that the ',' is unexpected.
These are also correct JSON objects: ```json { "id": [] } ``` and ```json { "id": {} } ``` or ```json { "id": null } ``` or ```json { "id":...
There is a grammar that the parser tells you about, in short-hand notation. It must be double-quote + string + double-quote + colon + value "value" itself can be a...
Using this in the playgound [1] ```json { "id":, } ``` results in this error message: ```log com.fasterxml.jackson.core.JsonParseException: Unexpected character (',' (code 44)): expected a valid value (JSON String, Number,...
Which version are you using ? I cannot reproduce your error in the playground. I get different error messages, see above.
You entered the JSON object in the `JSTL` text area in the playground. I, OTOH, entered the same JSON object in the `Input` text area. That explains the different errors...
I make it a habit to have an "entry" method and implicit call at the end of a `.jslt` file, say ```jstl def remove_html (text) replace ($text, "]*>", "") def...