You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
We have a need to take an issue and remove the hyphen and issue number from an issue and copy just the project key into another field.
I am new to using ScriptRunner and am looking for some guidance into how this can be done.
Hi Branden,
You can remove the hyphen and the issue number with replaceAll() method. Below is the sample script that applied in Behaviours:
//Get the current issue key to remove its hyphen and the issue number
def test = (underlyingIssue as String).replaceAll(/-.*/,'')
def textField = getFieldByName("Single Text")
//Copy the project key to another field "Single Text"
textField.setFormValue(test)
You can also refer to the community post here: Trim string with ScriptRunner for trimming the string before the '@' and copy that value in another text field in Post Function.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.