Would like ideas for the easiest way to do this to multiple files(example below). I prefer TCL. Can this be done easily with regsub?
Note: Only want keys to change to lowerCamel case, not the values.
"FooBar": [
{
"NumOne": "Hello",
"SecondThing": true,
to
"fooBar": [
{
"numOne": "Hello",
"secondThing": true,