Is there a way to pull out the string value of that JIRA field? Right now, it's coming over in automation {"rows":[["12345","12345-BUILDING1"]],"ts":1728065614679,"rowNo":1}. I just want to strip out the middle piece "12345-BUILDING1" for my automation messages.
Hello @Liz Phi ,
Jira offers wide range of string operations using smart values, use the one which suits your requirement.
Automation smart values - text fields | Cloud automation Cloud | Atlassian Support
Vijay
Hi @Vijay Dadi - I finally got the between function to work, but I can't get it to pull just the data between the quotation marks. Is this even possible.
for example - I got it down to "12345-TEXAS"
is there a function to remove the quotes?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, you can use replace/remove function.
Ex: {{issue.summary.replace(""","")}}
{{issue.summary.remove(""")}}
Try this
Vijay
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
let me try
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
{{issue.Summary.replace("\"","")}} - this worked for me. Give it a try.
need to use escape sequence for ".
Vj
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
guess you tagged a wrong account, accept the answer if it helped you to solve your question.
Vijay
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.