| **Navigation:**  [[templates.htm|Templates]] > [[tlrcontents.htm|Template Language Reference]] > Built-in Template Procedures >====== UNQUOTE (remove string special characters) {{c6h0068.jpg|C6H0068.jpg}} ====== | [[tailname extract file name from full path .htm|{{btn_prev_n.gif|Previous page}}]][[tlrcontents.htm|{{btn_home_n.gif|Return to chapter overview}}]][[unsplit merge a multiple line string to single line .htm|{{btn_next_n.gif|Next page}}]] | | || **UNQUOTE(** //symbol// ) {{blk2blue.jpg|blk2blue.jpg}} | **UNQUOTE** | Contracts the //symbol's //string data, "singling up" doubled single quotes (''), and all doubled un-paired left angle brackets (<;<;) and left curly braces ({{). | | //symbol// | The symbol containing the properties to parse. | The **UNQUOTE **procedure returns the string contained in the symbol with all doubled single quotes (''), doubled un-paired left angle brackets (<;<;), and un-paired left curly braces ({{) "singled up" (returned to single instances instead of double instances of each character). This is the direct opposite to the QUOTE procedure. **Return Data Type:**     STRING **Example:** **#PROMPT('Filter Expression',@S255),%FilterExpression** **#SET(%ValueConstruct,QUOTE(%FilterExpression))  #!Expand single quotes and angle brackets** **#SET(%SingledValue,****UNQUOTE****(%ValueConstruct))    #!Contract single quotes and angle brackets** **See Also:     **[[quote replace string special characters .htm|QUOTE]] [[built in template procedures.htm|Built-In Template Procedures]]