How to saperate string

dzfstrong text

Hi @Mathkar_kunal

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.

1 Like

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:
grafik

And can also dynamically retrieve all property names/values:
grafik
grafik

1 Like

HI @Mathkar_kunal

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

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.