Pretty-Print a string: make lowercase and capitalize first letters of words.
Source position: strutils.pp line 212
function AnsiProperCase( |
const S: string; |
const WordDelims: TSysCharSet |
):string; |
S |
|
String to pretty-print. |
WordDelims |
|
Characters to use as word delimiters. |
Resulting lowercase string with first letters capitalized.
AnsiProperCase converts S to an all lowercase string, but capitalizes the first letter of every word in the string, and returns the resulting string. When searching for words, the characters in WordDelimiters are used to determine the boundaries of words. The constant StdWordDelims can be used for this.