How can we capture only the I’d from this message box for yearly report uploaded confirmation?
As I am capturing it’s selecting complete including text.
1 Like
Hi,
You have to extract whole information after that you have to split by space and take the index of the last to get the ID.
2 Likes
Use GetText activity to scrape the data and then store it in a string variable say ‘str’ and then try below one:
RequiredString = str.Split(" ".ToCharArray)(7)
2 Likes