How specific text from email body outlook

Once you get the email body, use regular expression to extract the required values. In UiPath, there are two extensive regex methods that will help you achieve this, IsMatch and Matches.
Below are the expressions you can use,
Total:

(?<=total[ :]+)[0-9.,]+

Average:

(?<=average[ :]+)[0-9.,]+

References:

1 Like