-
{+}
: Adds numbers together
- Arguments:
- Example result:
2
- Using input:
{+;1; 1}
- Using input:
{+;1;0.2;0.5;0.3}
-
{-}
: Subtracts one or multiple numbers from another
- Arguments:
- Example result:
0
-
{*}
: Multiplies two numbers
- Arguments:
- Example result:
4
-
{/}
: Divides one number by another
- Arguments:
- Example result:
1
-
{%}
: Returns the remainder after division (mod)
- Arguments:
- Example result:
0
-
{**}
: Raises a number to the power of another
- Arguments:
- Example result:
4
-
{round}
: Rounds a number to the given amount of decimals
- Arguments:
- Example result:
1.00
-
{formatBytes}
: Converts a bytes value to a human-readable format
- Arguments:
- Example result:
0 bytes
- Using input:
{formatBytes;0}
- Example result:
1 KiB
- Using input:
{formatBytes;1024}
- Example result:
1 MiB
- Using input:
{formatBytes;1048576;0}
- Example result:
53.977 MiB
- Using input:
{formatBytes;56598464;3}
-
{formatNumber}
: Converts a number into a more human-readable format
- Arguments:
- value = 1
- langCode = "en-US"
- Example result:
1.234.567,89
- Using input:
{formatNumber;1234567.89;de-DE}
-
{random}
: Generates a random number
- Arguments:
- Example result:
1
- Using input:
{random;1;1}