Selecting multiple components in a filter using wild cards

Bill Blinn June 20, 2017

The company I work for is upgrading JIRA to v7.3.6 from v6.3.12 and I'm having trouble finding answers to some questions. Here is my third (and I hope final) question:

Does version 7 support wild cards for selecting components?

Currently we have many Components that are owned by the same person, but she also owns some Components we don't want to see. This leads to cumbersome filtering such as
'component in componentsLeadByUser(username) and component not in ("a" "long" "list" "of" "components")'

All of the Components we want to see begin with 'ICC', but version 6 doesn't allow a filter like this: 'component in (ICC*)'

Is there some other method by which we can accomplish this?

1 answer

1 accepted

2 votes
Answer accepted
Tarun Sapra
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
June 20, 2017

Hello Bill,

I am using 7.3.0 and yes there is a method which supports regex -

In your case it can be 

component in componentMatch("^ICC.*")

i.e. filter on  components starting with ICC 

Bill Blinn June 20, 2017

Excellent! Thank you. That's exactly what I was hoping for.

Suggest an answer

Log in or Sign up to answer