Hello,
I don`t how can I serch issues:
I would like to find issues that in "Summary" begins with '[' then five numbers and then ']'
for example: '[12345]', '[00341]', etc
I tried to use something like that: \\[?????\\] or \\[*\\] but it dosn`t work :(
Can You help my or suggest something ? :)
Best regards
Maciej Brachfogiel
Hi Maciej,
You can try:
Issues -> Search for Issues
You have the choice of Basic search (clik choise) or Advance search (by typing JQL). See documentation Searching for issues.
To search for any text use JQL:
summary ~ "\\[example\\]"
summary ~ "\\[12345\\]"
Best Regards
Pavel
MoroSystems Support
Hi,
Thanks but I think we didn`t understand each other :)
Maybe I will give You an example:
I have a lot of issues with Summary starts like this: [11111], [22222], [33333], [other], SOMETHING
I would like to create a searching schema that allows me to find list of issues from example: [11111], [22222], [33333] (without: [other], SOMETHING)
I tried to use this:
summary ~ "\\[?????\\]"
but it doesn`t gives me any results :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
JQL does not have regex by default. But you can use ScriptRunner plugin and its JQL functions, for example:
https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_issuefieldmatch
Regards,
Martin
MoroSystems Support
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One more thing...there should be regular expressions by default in JQL in Jira 8, but there is no release date given for Jira 8 yet...
Regards,
Martin
MoroSystems Support
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In Advanced mode: summary ~ "\\[?????\\]" doesn`t gives any results
but for example summary ~ "\\[17449\\]" - works
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register NowOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.