Copy Text from Email Body and make assignment into another software

Hi

I am fairly new to UiPath. Kindly help me with the following. Below is an extract from an email that I get

Project ID : A0002000
Lead Engineer : Jay Jacobson

I have to copy the PID from the email, search it in a software called Primavera P6 and then make the assignment for the Lead Engineer.

Thank you for you help.

You can use regular expressions to extract the PID and Lead Engineer name. Once you get the values just trim it to remove any leading / trailing spaces.

For project ID (?<=Project ID :).+

For lead engineer (?<=Lead Engineer :).+

image

image

1 Like

Thank you @yikwen.goo It worked!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.