You have been awarded Work Request : 05958891.
Ticket Number : CNR2208169.
Please consult the ACAS System for details.
we can anchor the regex
similar we can do for the ticket
System.Text.RegularExpressions.Regex.Match(MailSubject,β(?<= Work Request:)β/d+).Value
but its showing error.
you are not using backslash d and also do end the string quotation not on end of pattern string
Please use the right syntax as shown above
Sorry for bothering. Please correct me with correct syntax
System.Text.RegularExpressions.Regex.Match(MailSubject,"(?<=Work Request:)(\d+,*).Value.ToString
Thanks in advance
(?<=Work Request : )\d+
System.Text.RegularExpressions.Regex.Match(YourStringVar,"(?<=Work Request : )\d+").Value.ToString
Here is the expression for Work Request
Use Assign Activity
LHS - Create an avriable
RHS - System.Text.RegularExpressions.Regex.Match(MailSubject,β(?<=Work Request : )\d+β).Tostring
Here is the expression for Ticket Number
Use Assign Activity
LHS - Create an avriable
RHS - System.Text.RegularExpressions.Regex.Match(MailSubject,β(?<=Ticket Number : )\w+β).Tostring
For More Information Refer the thread
Regards
Gokul
Can you share the Exact Input in preserver format @Puneet_Singh3
Here is the expression for Work Request
Try this expression
Use Assign Activity
LHS - Create an avriable
RHS - System.Text.RegularExpressions.Regex.Match(MailSubject,β(?<=Work Request)\s+\d+β).Tostring.Trim
Here is the expression for Ticket Number
Try this expression
Use Assign Activity
LHS - Create an variable
RHS - System.Text.RegularExpressions.Regex.Match(MailSubject,β((?<=Ticket#)\s+\w+β).Tostring.Trim
Regards
Gokul
Work Request is working fine but getting issue in Ticket on Issue is ""Assign: parsing β((?<=Ticket#)\s+\w+β - Not enough )'s.
String is You have been awarded Work Request 05958948, Ticket# CSR2209549. Please consult the ACAS System for details.
Try this expression
Use Assign Activity
LHS - Create an variable
RHS - System.Text.RegularExpressions.Regex.Match(MailSubject,β(?<=Ticket#)\s+\S+β).Tostring.Trim
Regards
Gokul
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.