
To get the total value alone from the whole text
Input-whole text
Output-78900

To get the total value alone from the whole text
Input-whole text
Output-78900
Hi @Demo_User
You can use the following RegEx to extract the desired data:
Total\s*:\s*([\d,]+)

UiPath Syntax:
System.Text.RegularExpressions.Regex.Match(yourString,"Total\s*:\s*([\d,]+)").Value
Hope this helps,
Best Regards.
Hi @Demo_User
You can use the below
System.Text.RegularExpressions.Regex.Match(yourString,“Total(.*)(”).Value.Trim
Thanks,
Aditya
I need to get even if it has the decimal value
Well, in that case, you can use this RegEx:
Total\s*:\s*([\d,\.]+)

Hope this helps,
Best Regards.