Split a string error of multiple data

Hi @Amr_Nweery

You can also try with regex method

  1. use Assign activity to get Client ID
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=Client\sID:\s)(\S+)").Tostring
  1. use Assign activity to get Client Name
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=Client\sName:\s)(\S.+)").Tostring
  1. use Assign activity to get Client Country
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=Client\sCountry:\s)(\S.+)").Tostring

Regards
Gokul