Hi @rythm
Since the value which you wish to retrieve is nested, try using 2 Get Item from Collection.
1st Get Item from Collection
Dict: v_dict
Item name: Tool
Output: v_tool which should be {“Title”: ”Backend”}
2nd Get Item from Collection
Dict: v_tool (result from 1st Get Item)
Item name: Title
Output: v_title which should be “Backend”
Alternative to 2nd Get Item (if v_tool is return as string type and not as Dictionary/Collection type)
1st Search and Replace → {“Title”: ” with blank string “”
2nd Search and Replace → “} with blank string “”
Final Result → Backend
The alternative method is to use Regular Expression or Regex.
This is possible when there is a fix text structure
Hi Garett,
This approach worked beautifully. Thank you so much!