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.
Char(Value1,Value2, Value3, ...)
Char(13,10)
returns \r\n
Replace(@Text, Char(13,10), '<p/>')
replaces Carriagereturn - Linefeed with <p/>
Char('Ziele mit', 13,10)
returns' row with\r\n'.