What is best way to extract relevant information from Deseralize Result (Output of Deserialize JSON activity) —> First Name, Last Name and other field details?
DeseralizeResult(“fields”)(“description”) output is coming as below.
Working with select Token allows us to specifiy the extractor definition on string base.
So we can define a extraction config map like (Dummy, not your case specifics)
FieldName, SToken
DIVISION, $.Division
…
Later we can dynamicly
set up eg. datatable with the corresponding column structure
looping over the config map rows - extracting the values and add it to the datatable
This approach gives us flexibility and we can avoid redundand implementations parts
@ppr : I am actually having three description values as an output after API response. so below screenshot may give wrong value ( my objective is to extract values from third description value : First Name, Last Name etc.) → Find the attachment for your reference.
“description”: “This issue is being xxx.”,
“description”: “”,
“description”: “User Details:\n\n* First Name : xxx\n* Last Name : xxxx\n* Preferred Name : null”
Thanks for providing Regex input. I am fine to export values in loop.
Please find the attachment. There are three description fields in JSON output. I need to extract third description and then using regex to extract values. Any best method to extract third description field value as string?
“description”: “This issue is being xxx.”,
“description”: “”,
“description”: “User Details:\n\n* First Name : xxx\n* Last Name : xxxx\n* Preferred Name : null”