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