Convert possible line-endings to the currently valid line ending.
Source position: sysstrh.inc line 116
function AdjustLineBreaks( |
const S: string |
):string; |
const S: string; |
Style: TTextLineBreakStyle |
):string; |
AdjustLineBreaks will change all occurrences of #13 and #10 characters with the correct line-ending characters for the current platform, or the specified platform if the 'Style' parameter was specified.
The platform-specific line-ending characters are:
None.
|
Compare 2 ansistrings, case sensitive, using locale settings. |
|
|
Compare 2 ansistrings, case insensitive, using locale settings. |
Program Example48; { This program demonstrates the AdjustLineBreaks function } Uses sysutils; Const S = 'This is a string'#13'with embedded'#10'linefeed and'+ #13'CR characters'; Begin Writeln (AdjustLineBreaks(S)); End.