Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Strip Text and Copy to another field

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.

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Jia Jie
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Jan 30, 2021

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. 

TAGS
AUG Leaders

Atlassian Community Events