Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table plus
Condition ValueRegex PatternExample Substitution Variable UseExplanation
%original_key%([A-Z]+)-(\d+)

Issue project from pattern: %pattern1_1%

Issue number from pattern: %pattern1_2% 2% 

Remove dash from key: %pattern1_1%%pattern1_2% 2% 

This regex has 2 capture groups - characters enclosed by parenthesis.

  • One for the first part of the key - ([A-Z]+)
  • One for the second part of the key - (\d+)

...