dzfstrong text
Please refer the following workflow where I have performed actions to get the result you specified.
Sample.xaml (7.4 KB)
Output:
Hope this helps,
Best Regards.
Hello @Mathkar_kunal,
This string looks like JSON. I recommend you to consider JSON deserialize activities. That could give you more convenient result when the string is changed.
I believe this document will help you.
Regards
as already mentioned above it looks like JSON, so JSON Processing techniques are recommended.
Once the string is deserialized into a JObject we can do:
And can also dynamically retrieve all property names/values:
You can try with Regex expression but it is optional. You can try with JSON deserialize activity
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=:“')\S+(?=”')|(?<=:“‘)\S+(?=’”)").Tostring
Regards
Gokul
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.