vrdabberu
(Varunraj Dabberu)
February 26, 2024, 2:53am
2
Hi @Xavier_Gonzalez
Use Get Text Activity and extract that whole box and save it a variable. After you can follow the below thread steps to extract Client ID, Client Name, and Client Country.
Hi @170290064
First, use the Get text activity to extract the data and store in a Variable called Input_Str.
- Assign -> ClientID [String Datatype] = System.Text.RegularExpressions.regex.Match(Input_Str.toString,"(?<=Client ID:\s+).*").Value
- Assign -> ClientName [String Datatype] = System.Text.RegularExpressions.regex.Match(Input_Str.toString,"(?<=Client Name:\s+).*").Value
- Assign -> ClientCountry [String Datatype] = System.Text.RegularExpressions.regex.Match(Input_Str.toString,"(?<=Clie…
Regards