Common Content for Data Engineering
- Common Content for Data Engineering 10.2.2
- All Products
Syntax in String Field
| Output Value
| Description
|
---|---|---|
C:\${var:myVariable}
| C:${var:myVariable}
| The Data Integration Service displays the variable name as a string.
|
C:\\${var:myVariable}
| C:\test
| The Data Integration Service reads the backslash as a regular character and resolves the variable to its value.
|
C:\temp\\${var:myVariable}
| C:\temp\test
| The Data Integration Service reads the backslash as a regular character and resolves the variable to its value. No escape character is required for the first backslash.
|
C:\\\${var:myVariable}
| C:\${var:myVariable}
| The Data Integration Service reads the backslash as a regular character and displays the variable name as a string.
|
C:\\\\${var:myVariable}
| C:\\test
| The Data Integration Service reads two backslashes as regular characters and resolves the variable to its value.
|