[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] Reference for unit 'sysutils' (#rtl)

WrapText

Word-wrap a text.

Declaration

Source position: sysstrh.inc line 284

function WrapText(

  const Line: string;

  const BreakStr: string;

  const BreakChars: TSysCharSet;

  MaxCol: Integer

):string;

function WrapText(

  const Line: string;

  MaxCol: Integer

):string;

Description

WrapText does a wordwrap at column MaxCol of the string in Line. It breaks the string only at characters which are in BreakChars (default whitespace and hyphen) and inserts then the string BreakStr (default the lineending character for the current OS).

Portions of text that are between single or double quotes will be considered single words and the text will not be broken between the quotes.

See also

StringReplace

  

Replace occurrences of one substring with another in a string.


Documentation generated on: May 14 2021