Abstract

This code snippet sets a Checklist/Multi-select type field with a subset of the available options based on a regular expression

Logic

Access the available options of the Checklist/Multi-select type field and retain all the options that match the regular expression.

Snippet

def regExp = ~/^(?i).*<Text to match in the option>.*/
issue.getAvailableOptions("<Name of the field>").findAll{
  it.getValue().matches(regExp)
}

Placeholders

PlaceholderDescriptionExample
<Name of the field>Name of the field of type Checkboxes/Select list(multiple choices)Tasks list
<Text in the option>Text the options must contain to be selectedInstallation

Examples

The output of the code is Collection<Option> which you could use in a Groovy expression, for example to - Set a Checkboxes/Multi-select field with a subset of its available options. Eg: Select all the Installation tasks in the Checkboxes/Multi-select type field in


References

Related articles


Related issues