Skip to content
mtbeek32 edited this page Jan 31, 2024 · 6 revisions

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

Clone this wiki locally