C10: New Line in strings: when to use <13,10> and CHR(13) & CHR(10)?

Pipe symbol is interpreted as CLRF only by MESSAGE function, in other places you can use your own equate like
eq::CLRF EQUATE('<13,10>')

multilineString = 'Line1'& eq::CRLF &'Line2'& eq::CRLF &'Line3'

1 Like