Hi,
I am new to UiPath. In a txt file, I have the below and want to extract “345” for variable Chr_D
Variable Sale Price Customer_ID
GH_E 199 32 456
Chr_D 100 12 345***
I tried the below. But i can’t seem to 1) add the 2nd delimiter (*), and 2) how do I extract not the last string but “345”? Thank you!
Cust_ID=(System.Text.RegularExpressions.Regex.Match(Result,“(?<=Cust_ID ).+”).Value).ToString.Split({" "C, “*”}).last