I have an text entry field where I store an JSON object as string e.g.
[{
"name": "Organisation",
"propertyName": "orgName"
}, {
"name": "Function",
"propertyName": "job"
}]
for readability I would like to keep the format but for programmatic purposes I would like to store the object plain without the spaces , tabs, newlines in a second field (computed).
However I am fighting with the correct computation. I tried @ReplaceSubstring(@Implode(@Explode(Config_Edit; @NewLine); “”); " "; “”) but does not give me the proper result yet.
Subject: RE: remove all spaces , newlines, tabs from a text field
not sure if you can call it a ‘tab’ but I mostly check my json objects via jsonlint http://jsonlint.com/ so if I paste the code from here in my Notes field and run the code it still contains the ‘tabs’ from jsonlint website