DashStr Function |
Unit
QESBPCSConvert
Declaration
Function DashStr(const N: LongWord): string;
Description
Also See: FillStr
Parameters |
N | the length of the resultant string, ie the number of dashes. |
Category
Extra String Handling RoutinesImplementation
function DashStr (const N: LongWord): string; begin Result := FillStr ('-', N); End; |
|