====== Char ====== The function Char () is primarily intended for entering special characters. For example, to enter a line feed in the mapping, use Char (10), for a carriage return Char (13). It is not possible to enter a string, e. g. by' \r\n', because the backslash is masked. ==== Syntax: ==== Char(Value1,Value2, Value3, ...) ==== Sample: ==== Char(13,10) returns \r\n Replace(@Text, Char(13,10), '

') replaces Carriagereturn - Linefeed with

Char('Ziele mit', 13,10) returns' row with\r\n'.