You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I´m setting up templates in JETI using velocity templates and HTLM, i´d like to use regex capture groups to retieve data from custom files. But I´m not quite sure how to invoke regex capture group in Velocity/Java, i´ve seen plenty of examples on how to replace text and verify matches but I have yet to find or figure this out.
I can use this to retrive the customfiled data and present it to the user:
#set ($string =$!jetiFieldRenderer.renderCustomField($issue, "customfield_10238").toLowerCase())
$string
Here is what I think i need to do in JAVA but I´m not sure how to make velocity do it and present it.
Pattern pattern = Pattern.compile("\[(.*)\(.*\)\]");
Matcher matcher = pattern.matcher($string);
matcher.group(1)
@Anders Lantz, did you ever figure this out? This is also what I need to do, but it is not working, Maybe the correct classes are not exposed in the Velocity context for user macros?
Nah I had to resort to using "replaceAll" several times on the same custom field.
For reference, here is one regex i used:
$!jetiFieldRenderer.renderCustomField($issue, "customfield_10515").replaceAll('(\[|\]| \(\w*-\d*\))','')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Happy New Year! We hope you all had a safe and restful holiday season. 2020 was a unique year full of unforeseen events; however, as we enter the new year of 2021, we’re optimistic for the light at t...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.