Lvl3 Assignment1 Error

Hi all,

Can anyone assist me how to fix this error?
I am currently working on Lvl3 Assignment 1.

System1_ExtractClientInformation.xaml (11.2 KB)

Thank you.

Regards.

As explained in the walk-through, you can try below steps:

Use Get Text to get client data into ‘ClientInformation’ variable

and use assign activity to extract client ID, name and country using Assign activity

out_ClientID = ClientInformation.Substring(ClientInformation.IndexOf("Client ID: ")+"Client ID: ".Length).Split(Environment.NewLine.ToCharArray)(0)
out_ClientName= ClientInformation.Substring(ClientInformation.IndexOf("Client Name: ")+"Client Name: ".Length).Split(Environment.NewLine.ToCharArray)(0)
out_ClientCountry= ClientInformation.Substring(ClientInformation.IndexOf("Client Country: ")+"Client Country: ".Length).Split(Environment.NewLine.ToCharArray)(0)

Thanks bro!

Big help :slight_smile:

1 Like

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