I have a large json file like this:
{
"height": 2.5,
"status": "open",
"date": 1662645600000,
"batch": {
"food": {
"-NBml_1X3O1H6Yrkr3LN0": {
"qty": 5.35,
"date": 1663004201119
},
"-NBmlcwczvQSgQauMBky0": {
"qty": 5.65,
"date": 1663197837636
}
},
"growth": {
"-NBml_1X3O1H6Yrr3LN0": {
"rate": 7.35,
"date": 1663004201219
},
"-NBmlcwczvQSQauMBky2": {
"rate": 5.4,
"date": 1663197837936
}
},
"date": 1663197837037
}
}
I would like to add 864000000 (10 days) to each date field
How can I do that using vscode, jsoneditor or a simple dart code?

With the extension Regex Text Generator
"data":text that needs updating. You can do that globally with Find andAlt+Enteror any other method you likeArrowRightArrowRightShift+End(.*){{=N[1]+864000000}}Enterin input box of generator regexEscin input box of generator regexEscto leave Multi Cursor Mode