Regex without duplicate in UiPath

Okay great! :smiley:

Please mark as solution :white_check_mark:

The Regex Pattern explanation.

It will look for this text "Restoration Coder: " exactly. Then using the brackets it will match any letters(a-zA-Z) or Spaces (\s) or “.” (this is the green highlighted section) and only stop at the first digit (\d) of 0-9.
The red highlighted section is looking for any digits of 0-9 (\d) and “.” and commas “,” and will stop at the first whitespace/space (\s).

I hope this helps.

Check out my Regex MegaPost to learn more.