I am working on a rtf file which displays data based on an xml source file. XML Source File:
...
<XMLElement>Something</XMLElement>
...
In the rtf file, I have a checkbox that I want to check for a specific value.
For example, if I want the box to be checked if value = 'Something', I use the following condition in BI Publisher properties tab of the checkbox (which works):
<?XMLElement='Something'?>
My question is: How can I do this if the value from the XML contains a single quotation mark ( ' ) For example, you can replace string 'Something' with string 'I don't know'
<XMLElement>Don't know</XMLElement>
PS: I cannot alter the XML file and i have to do this in the rtf template.
Thanks!