concat, quotation mark and apostrophe combination problems
I tried different ways and also looked around but can't get this running. I need to concat the following: "concat( 'this is; \"a sample', //XML_NODE, '\"; \"using an apostrophe', ''', 'in text\"' )" one line version: "concat( 'this is; \"a sample', //XML_NODE, '\"; \"using an apostrophe', ''', 'in text\"' )" The output should be: this is "a sample XML_NODE_VALUE"; "using an apostrophe ' in text" The problem is the ' in the text. concat use it to end a string and expect an following ; or the end of concat. Escaping or HTML entities all seems to not work. Any help is really appreciated. Thanks!