De-reference a Quote Mark in Expression Manager

pupamonkey

pupamonkey

Member
Hi guys,

I'm trying to create a string with a quote mark in it.
Something like this blah blah "something" blah blah.
Does anyone know if Expression Manager has a de-reference character for " so I can use it in the Concat(,) function?

Thanks for your input :)
 
What I've done in the past is to use single inverted commas (quotes - ') to include a double inverted comma (quote - "): concat('"xxx"',' is it')

OR use doubleinverted commas (quotes - ") to include a singleinverted comma (quote - '): concat("'xxx'"," is it")

If that doesn't work assign the value to a variable and use the variable name in the concat function.
 
Last edited:
Back
Top