#13#10 in Delphi

These are the control characters in delphi that are used to format strings.
If a string value has to be entered in a multiline , we can use this .
Eg:

var
testString    :    String;

testString    := 'Senthil' + #13#10 + 'Kumar';
MessageDlg(testString,mtConfirmation,,0);

#13 represents a carriage-return and #10 represents a line-feed combination.

The above example prints the testString in 2 lines .

If you want to know about the difference between carriage-return and Line-feed Click here .

In delphi , the constant sLineBreak can be used instead of the the above which is already defined in the System Unit file.
Also note that sLineBreak value is different in Windows and Linux .

#10 in Linux and #13#10 in windows .

So that above example can be written as.

testString    := 'Senthil' + sLineBreak + 'kumar';

Alternatively , we can also use

testString    := 'Senthil' +  ^M + ^J + 'Kumar';

Some examples of the control characters are :
Char. Dec. hex Comments
NUL 00 00
BEL 07 07 ^G Bell or tone
BS 08 08 ^H Backspace
HT 09 09 ^I Horizontal Tab
LF 10 0A ^J Line Feed
VT 11 0B ^K Vertical Tab
FF 12 0C ^L Form Feed
CR 13 0D ^M Carriage Return

Share