CHAR

fun CHAR(vararg chars: KQLiteColumn<in Int>): KQLiteColumn<String>

Constructs a string by interpreting the integer arguments as Unicode code points.

This function corresponds to the char(X1, X2, ..., XN) function in SQLite. It takes one or more integer values (or columns containing integer values) and returns a string composed of the characters corresponding to those Unicode code points.

Any argument that is not an integer is interpreted as 0.

Return

A KQLiteColumn of type String containing the assembled characters.

Author

MOHAMMAD AZIM ANSARI

Parameters

chars

Unicode code point characters to create combined text.

See also