Get text clientid

Hello all,
How do i get only the cient id number ?
Using get text activity i can scrap the “client id”, but i want only that client id value.

Use some string manipulation methods like substring.

Hi @karnik,

You can simply do this -

YourString.Split(Environment.NewLine,StringSplitOptions.None)

this would give you an array with ClientID, Client Name and Client Country

Or a little longer but working way is finding the indexes in this way you can find ID, Name and Country

Thanks,
Prankur

Thank you :slight_smile:

1 Like