Uipath Level 3 Assignment 1

can check the argument directions of Client ID Client Name and Client Country… confirm if its “Out”

1 Like

@Shahbaz670 did it work?

finished it… doing some tricks.:slight_smile:

@Palaniyappan plz explain this code

the Values are being fetched as
for example if need to fetch the CLient ID :
ClientInfo.Substring(ClientInfo.IndexOf(“Client ID:”)+ “Client ID:”.Length).Split(Environment,NewLine.ToCharArray)(0)

1 Like

First the Substring will get the text from client if: and second will split them with Newline
In Substring we will be passing two arguments like first one is the place of index where to start getting the Substring and second argument is number of characters to be obtained

Cheers @hasib08

example @Palaniyappan

Kindly have a view in the above comments and I hope it’s there
Cheers @

The substring will get the index of client id means the i.e. 1234 and what the second legth will get @Palaniyappan