String
conversion-functions String
concept
- string is a string value-type.
- string() is a function converting data items or units of other value types to the string value type.
This page describes the string() function.
syntax
- string(a)
definition
applies to
- data item or unit with Numeric, uint2, uint4, or bool value type
example
attribute<string> stringA (ADomain) := string(A);
| A(int32) | stringA |
|---|---|
| 0 | ‘0’ |
| 1 | ‘1’ |
| 256 | ‘256’ |
| -100 | ‘-100’ |
| 9999 | ‘-9999’ |
ADomain, nr of rows = 5