Hi @Amr_Nweery
You can also try with regex method
- use Assign activity to get Client ID
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=Client\sID:\s)(\S+)").Tostring
- use Assign activity to get Client Name
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=Client\sName:\s)(\S.+)").Tostring
- use Assign activity to get Client Country
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=Client\sCountry:\s)(\S.+)").Tostring
Regards
Gokul