Object
Template
Post
Raw Template Expression
Raw Template expression constructs an object belonging to the `object:RawTemplate
object type.
✍ Syntax
XML Template
`
BacktickItem* Dollar* `
Here
- BacktickItem := BacktickSafeChar| BacktickDollarsSafeChar| Dollar* interpolation
- interpolation :=
${
expression}
- BacktickSafeChar := ^ (
`
|$
) - BacktickDollarsSafeChar :=
$
+ ^ ({
|`
|$
) - Dollar :=
$
bal run raw_template.bal
["My name is ",". My age is ","."]
["",30]
bal version
Ballerina 2201.6.0 (Swan Lake Update 6)
Raw Template Expression Example