string
FEEL built-in function · Conversion functions
string(from)
Converts any FEEL value to its string representation.
Parameters
| Parameter | Type | Description |
|---|---|---|
| from | any | the value to render |
Examples
string(1.1)
1.1
Try it →
string(date("2026-07-24"))
2026-07-24
Try it →
string([1, 2])
[1, 2]
Try it →
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).