Appian Community and Appian Academy are being upgraded. As a part of the upgrade, Appian Community is currently in read-only mode, and user registration is disabled until August 3. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!
The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.
Hi every one,
I'm having a text string as example:
{"Status":"Active","updatedBy":"lynn123","hasAccount":false}
What I expect to have is:
Status: Active
updatedBy: lynn123
hasAccount: no
I think for replacing comma with a line-break, char(10) might work, then I will substitute false with "no". But for the rest of characters {,},"", I'm not sure how to remove them all at once. I checked documentary for a!stripWith or a!reject and I think they don't work with a list of characters.
Hope I can have some suggestions from you,
Thanks a lot!
Discussion posts and replies are publicly visible
As Stefen Suggested, Use fromJson and then use index functionality to get the particular value based on the key.
Thanks Deepak, the problem is that I need to apply the functions to all rows in a forEach loop, and not all of them have the same index for those characters to use index function :(
Hi mollyn126,
below snippet might helpful for your case
substitute( stripwith( tostring( { "Status": "Active", "updatedBy": "lynn123", "hasAccount": false } ), "[]" ), ",", char(10))
Thanks AJ, the result came out just as my expectation :)