...
Excerpt | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
DescriptionThe 'Regular Expression Check' compares the value of a text, number or url's field against a regular expression. For example to verify that the content matches a given format. ConfigurationYou must select the field to be checked and enter the regular expression. For example:
Detailed Documentation on Regex can be found here: https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html It is quite technical though. A good website that could help further is https://www.freeformatter.com/java-regex-tester.html where you can test them and also have a less technical documentation with examples. Hope this helps. For information on how to configure a check in JIRA, see the JIRA documentation. If the field is a multiline text field, the text will be split on the newline character before applying the expression to each token. The HTML editor may add an additional newline character when pressing the "enter" key. Be careful what kind of regular expressions you are using. Some might be exploited by a malicious person. See ReDoS . It is your responsibility as JIRA administrator to only use safe regular expressions.
ExampleA workflow is configured so that the 'Resolve' transition has the 'Regular Expression Check' where 'TextField' has to match '[a-z]*'. If a user attempts to resolve an issue on this workflow, where the 'TextField' is for example '7 pieces', the check will fail, and no action will be performed. However 'pieces' as content would be allowed. Supported Field Types
|
...