Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

What is the default stash jira key pattern doing?

Ken Taylor
Contributor
November 3, 2013

By default, Jira is started with the following value for the stash.jira.key.pattern argument:

((?<!([A-Z]{1,10})-?)[A-Z]+-\d+)

To ignore case, I was thinking of changing this to:

\b(\p{Alpha}+-\p{Digit}+)\b

Here I have omitted the negative lookbehind term:

([A-Z]{1,10})-?)

I know I could just include it or modify it in a simlar way:

((?<!(\p{Alpha}{1,10})-?)\p{Alpha}+-\p{Digit}+)

But what am I losing by not including it?

1 answer

1 accepted

1 vote
Answer accepted
Michael Heemskerk
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 3, 2013

Hi Ken,

The negative lookbehind is used to make the JIRA key matching a bit stricter. Specifically, it ensures that things like Crucible review keys (e.g CR-FE-1234) and Bamboo builds (e.g. STASH-MASTER-1234) are not matched. If you leave it off, you'll probably get a few more false positives.

Cheers,

Michael

Ken Taylor
Contributor
November 4, 2013

I can see that case but what does making the first dash optional acheive? And why is it captured? That is, why is the term:

([A-Z]{1,10})-?)

and not:

[A-Z]{1,10}-

Or, for that matter, why not just the dash, so that the expression becomes:

((?<!-)[A-Z]+-\d+)

Ken Taylor
Contributor
November 4, 2013
Okay. The original is not looking for a word boundary like I was going to do. I am going to try:
\b(?<!-)(\p{Alpha}+-\p{Digit}+)(?!-)\b

Suggest an answer

Log in or Sign up to answer
TAGS
atlassian, state of product 2026, product teams report, developer experience, product manager survey, AI impact, product team stress, product teamwork, dev workflow insights, 1000+ PMs, product leadership research

State of Product 2026

State of Product 2026: your pulse check on product development today. We asked 1000+ real teams how they’re feeling–and they had a lot to say.

Get the report
AUG Leaders

Atlassian Community Events