The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Variable definition

Jozef Vandenmooter
Contributor
March 23, 2020

Probably a stupid question, but here goes.

I'm replacing curly brackets in links with their ASCII code (Jira does not recognize URLs with curly brackets as valid).

The following works fine:

def formField = getFieldByName("Link to TDD")
String fieldValue
fieldValue = formField.getValue()
formField.setFormValue(fieldValue.replaceAll(/\/,"%7B").replaceAll(/\}/,"%7D"))

Does anyone know why I get a "Cannot find matching symbol error" for the .replaceAll method when I use the following:

def formField = getFieldByName("Link to TDD")
def fieldValue = formField.getValue()
formField.setFormValue(fieldValue.replaceAll(/\/,"%7B").replaceAll(/\}/,"%7D"))

In other words, why do I have to declare the type of the fieldValue variable and not the formField variable?

Thanks,

Jozef  

 

0 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

TAGS
AUG Leaders

Atlassian Community Events