Type conversion
A type conversion is the conversion from one type to another. In DDP, a type conversion looks like this:
<expression of one type> als <other type>.
For example: x als Text.
Conversion table
Only certain types can be converted to others.
input type | output type | Notes |
---|---|---|
Zahl | Kommazahl Text Wahrheitswert Buchstabe | - - 0 => falsch; nicht 0 => wahr uses ASCII value |
Kommazahl | Zahl Text | truncated - |
Wahrheitswert | Zahl | falsch => 0; wahr => 1 |
Text | Zahl Kommazahl Buchstaben | - - - |
Buchstabe | Zahl Text | utf8 bytes in decimal - |
Buchstaben | Text | - |