python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to loop through array JSONATA
Here is my array:
{
"tocontrol": [{"name": "john"},{"name": "doe"}]
}
I'm expecting below output:
{
"method": "OR",
"mat...
Thomas Boulestin
Votes: 0
Answers: 1
Display the data value after using jsonata
This is my json
{
"message":{
"Refno":"654"
}
}
This is my jsonata file
message.{
"data":"update/add",
"Refno":($.data=update)?Refno:"&...
rama devi
Votes: 0
Answers: 1
Only fields matching regexp
I wonder what is the best and more efficient way to filter out fields with regular expression. My jsons looks like:
{
"const": {
"bt_L1": 1,
"bt_L2": ...
Sebastian
Votes: 0
Answers: 1