Functions
Last updated
Last updated
A function is a construct for providing advanced functionality inside of a . As in mathematics, a function typically accepts some sort of input, performs an operation, and returns a result.
For example, a hypothetical function could accept two numbers and return their sum.
For a list of available functions, visit the .
In ESCL, all functions are comprised of two parts: a name in uppercase and an arguments wrapped in parenthesis.
In this example, the function's name is LINK
and its arguments clause is :myText, :myUrl
.
A function may be included in a , just like a or identifier. In fact, you can use them together:
Then, when we translate the string, we pass in some variable values:
And that's it! We've created a hyperlink directly in our string:
Sometimes, you may want to call multiple functions on the same piece of text. For this, you can nest multiple function calls, and they will be executed in order.
In this example, we want to create a link that is also bold:
Then, when we translate the string, we pass in some variable values:
Voila! We've used both functions together to provide a result that is bold and linked: