Hello All,
I want to parse the string data written in a custom field and print it in another field. Is it possible?
{"id":"1212","$type":"Issue"}
I only need id data, so I am trying to reach the value 1212.
BR
Cybersecurity
DevOps Cloud
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
Hello All,
I want to parse the string data written in a custom field and print it in another field. Is it possible?
{"id":"1212","$type":"Issue"}
I only need id data, so I am trying to reach the value 1212.
BR
Hello
If the parsing takes place in a Studio rule or automated task rule, you can use a combination of indexof and substring functions.
If you use the Integration Engine, you have more options, both additional functions and ways to manipulate json objects. For more details, see:
https://docs.microfocus.com/doc/SMAX/23.4/XieExplang
Best regards,
Brindusa
Hi, What about __regexToken(string,"\\W+id\\W+(\\d*).*")