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

Automation To Remove String From Description

Adam Dulberg
Contributor
September 25, 2020

Hello Community,

On my service desk project there's a 3rd party integration that appends text to the description field that I'd like to remove as it causes unnecessary noise and confusion. The process is a ticket is created where reporter fills in their own description and the text is added after creation so the reporter is unaware. Upon create, I'd like automation to remove that added text and maintain only what the reporter wrote.

For this example I'd like to remove the word "Please remove this text" when summary includes Test.

I've made several attempts, trying both "fields" and "update" with the format differing slightly for update. My understanding though, is if using "fields" - it behaves as a set and will entirely override the field.

"fields": and "update":

My latest attempt; realizing format is off for a few likely reasons. I was under the impression I could utilize the smart values to remove or replace text, but maintain the description otherwise.

{
"update": {
"description": [
{
"set": "{{issue.description.remove.asJsonString("Please remove this text")}}"
}
]
}
}

Hoping someone could help me identify the correct way to do this. Also, would I need to select the field "description" or can I go right to 'advanced' section? 

 

 

Screenshot 2020-09-25 171358.png

 

Thanks.

3 answers

1 accepted

3 votes
Answer accepted
Hana Kučerová
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 27, 2020

Hi,

please try something like this. I've just tested it and it works for me.

 

rule.png

Ashraf B February 16, 2022

Hi @Hana Kučerová,

I have created a CustomField "Latest Comment" and intend to capture first few characters of the Issue comment in this CustomField.

Can you review the attached image and share the syntax / smartvalue for this?

PS: Thanks @Hana Kučerová, I configured {{comment.body.abbreviate(int MaxLength)}}

Thanks and regards,

Ashraf BSmartValue.png

Lucas de Souza
Contributor
April 5, 2024

@Hana Kučerová just to let you know your answer helped me as well.

Thanks a lot.

Like Hana Kučerová likes this
3 votes
Walter Lamm
Contributor
August 10, 2021

If someone else is looking for a way to delete something from the description that is always changing: 

  1. Define some characters that are always around that part you want deleted
  2. Choose Edit issue -> description
  3. Fill in this code into the description field like @Hana Kučerová stated and insert your predefined characters:
{{issue.description.remove(issue.description.substringBetween("beginning_characters","ending_characters"))}}

 Done.

0 votes
Adam Dulberg
Contributor
September 27, 2020

That was a simple fix, thanks.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events