I have a similar problem to this question: https://community.atlassian.com/t5/Jira-questions/Pulling-date-in-string-with-REGEX-from-Description-trying-to/qaq-p/2415519
My date field is in the middle of the Description. It will be prepended with "Expected start date/effective date". This is what it looks like:
Employee ID Number: N/A (Employee is a new-hire/rehire)
Expected start date/effective date: 2023-10-02
Is this a: N/A
This is my regular expression:
(?<=Expected start date\/effective date:\W*)(\d+[-]\d+[-]\d+)
here's where I want to put it:
{{issue.description.match(“(?<=Expected start date\/effective date:\W*)(\d+[-]\d+[-]\d+)")}}
Putting it in an automation doesn't catch it. Regex testers tell me the regular expression is good. What am I missing?