Regex from string+digits

Hi,

I need to get something from string. It is “PROJECT-XX” and any digits like PROJECT-143, or PROJECT-1 or PROJECT-534534 from the subject of the email. The subject can be like (Project Case ID PROJECT-654) and with the Regex I currently have “(?=PROJECT).+\d” it doesnt work. How can I change it?

Best Regards,
Marek

Use this regex expression - “PROJECT-\d+” @logan.capp

thank You, works :slight_smile:

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