Using Escape Characters - trillium_discovery - trillium_quality - Latest

Trillium Control Center

Product type
Software
Portfolio
Verify
Product family
Trillium
Product
Trillium > Trillium Discovery
Version
Latest
Language
English
Product name
Trillium Quality and Discovery
Title
Trillium Control Center
Copyright
2024
First publish date
2008
Last updated
2024-10-18
Published on
2024-10-18T15:02:04.502478

If you use IF/THEN conditional statements, you must precede nested literal characters with a backslash, referred to as an escape character ( \ ). Adding the backslash ensures the nested literal character is read as part of the string, not the end of the string.

Use the following valid escape characters:

  • \\ = \ (backslash)
  • \t = tab
  • \' = ' (single quote)
Note: To escape a double quote ("), use " " together instead of the backslash. For example, Address IN (""""), using two double quotes within double quotes.