The String Quoting action allows you to add or remove quotes from a string.
Use string from existing variable.
Input a new string to use.
Output changes to original variable.
Output changes to specific variable.
Single quotes will be added to the beginning and end of a string.
Double quotes will be added to the beginning and end of a string.
This action will remove one pair of matching quotes from a string.
By default this action checks for quotes before adding them, enabling this option prevents this, which enables you to add extra quotes to a string.
Scripting Info
The Action properties available are :
property InputString : string;// The input string, if not using a variable
property OutputVariable: string;// The Output Variable name
property ApplyToInput : boolean;// Apply the changes to the input variable, only valid if using an input variable
property UsingInputVariable : boolean;// True if using an input variable, not input string
property InputVariable : string;// Input variable name
property AddDoubleQuotes : boolean;//True to Add Double Quotes, otherwise false
property AddSingleQuotes : boolean;//True to Add Single Quotes, otherwise false
property StripQuotes : boolean;//True to Strip Quotes, otherwise false
property ForceQuoting : boolean;//True to Force Quoting