Hi
How to extract DO number using string maupulation method
- extract subject
2)Extract DO number
Regards
Priyanka
Hi
How to extract DO number using string maupulation method
Regards
Priyanka
Try to follow the below steps
Use Get Outlook Mail activity to get the mails from Outlook.
Regards
Gokul
Hi @Gokul001
how to extract specific text, unable to find. please help me to create expression
regards
Priyanka
First read the email body from the email and assign it to one string variable. Let’s say EmailBody.
And then try below expression to fetch delivery order number.
DONumber = EmailBody.SubString(EmailBody.IndexOf("Delivery order number: ")+"Delivery order number: ".Length). Split(Environment.NewLine.ToCharArray)(0).Trim
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.