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