Is anyone else experiencing this problem when building a workflow ā the expression node will show during testing that a operation performed as expected, but during live ticket automations, the output is different and causes an error?
Expression node test result Workflow automation execution result
Iām using the following expression to delete everything in ticket description except a string nestled between two specific delimiters:
So the input would be Lorem ipsum dolor sit amet Ā«ASDFGHJKL123Ā» some other text
And the output would be ASDFGHJKL123
Iāll try to find a workaround, but it makes setting up this workflow frustrating.
Any advice would be appreciated. Thank you!
Best answer by zachary.king
Hello @christian.mentor, So is your question regarding the fact that there are BR tags in the output? you could try using a liquid filter to strip the html from the output. The description filed contains html and that does not get sanitized as you pass it down the workflow.
Try using this liquid filter around the expression builder result
If that is not what you are referencing I apologize. A great way to make sure you are getting the right value when testing through the entire workflow is to have the expression result post to a ticket as a note, then you will be able to verify what is actually being passed as a āstringā. I didnāt see it in your expression node but I assume the return type is of type āStringā. Hopefully using a liquid filter helps get what you are looking for.
Hello @christian.mentor, So is your question regarding the fact that there are BR tags in the output? you could try using a liquid filter to strip the html from the output. The description filed contains html and that does not get sanitized as you pass it down the workflow.
Try using this liquid filter around the expression builder result
If that is not what you are referencing I apologize. A great way to make sure you are getting the right value when testing through the entire workflow is to have the expression result post to a ticket as a note, then you will be able to verify what is actually being passed as a āstringā. I didnāt see it in your expression node but I assume the return type is of type āStringā. Hopefully using a liquid filter helps get what you are looking for.
Hello @christian.mentor, So is your question regarding the fact that there are BR tags in the output? you could try using a liquid filter to strip the html from the output. The description filed contains html and that does not get sanitized as you pass it down the workflow.
Try using this liquid filter around the expression builder result
If that is not what you are referencing I apologize. A great way to make sure you are getting the right value when testing through the entire workflow is to have the expression result post to a ticket as a note, then you will be able to verify what is actually being passed as a āstringā. I didnāt see it in your expression node but I assume the return type is of type āStringā. Hopefully using a liquid filter helps get what you are looking for.
Take care!
Thank you, @zachary.king! A very astute observation ā I noticed the html tags in the output too (for some reason, only when you hover over it?) and thought the regex expression wouldāve caught that as it did the content preceding the āĀ«ā character.
However, now that you mentioned it ā makes sense that wouldnāt register as part of a āStringā during the workflow. Your suggestion worked like a charm.
Much appreciated and thanks for lending your expertise!