...
Code Block | ||||
---|---|---|---|---|
| ||||
#prefix.{prefix.variableKey}# |
Here's some examples :
Code Block | ||
---|---|---|
| ||
#date.{envVariable.dateFormat}# #user.{variable.username}.firstName# #form.tableChild.field1[{form.tableParent.childId}]# |
Here's some examples:-
Escaping the Resultant Hash Variable
The parsed/returned Hash Variable may cause incompatibility with the current context/environment such as syntax error in a script. Therefore, one may pass in additional parameters into the hash variable declared to escape certain characters.
Before ending a hash variable with a hash "#", add a question mark character "?" followed by the required format. You may include multiple by defining semicolon ";" separated values.
- regex
- json
- javascript
- html
- xml
- java
- sql
- url
Code Block | ||
---|---|---|
| ||
#envVariable.script?java# |
...