This is the error message iam getting while trying to validate Email address.Any suggestions would be helpful.
Thanks.
Hi @Raj Kumar
the reason why you're getting this error is because you've typed a Groovy script instead of a Jira Expression. Groovy is used on Jira Data Center, whereas Jira Cloud only supports Jira Expressions, an Atlassian-made language.
You can use the Jira Expressions "match" method of strings instead:
issue.customfield_12345?.match('^\w+$')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.