RightAlignStr Function |
Unit
QESBPCSConvert
Declaration
Function RightAlignStr(const S: string; const N: LongWord): string;
Description
Also See: PadRightStr, LeftAlignStr
Parameters |
S | the String to be Right Aligned. |
N | the length of the resultant string. |
Category
Extra String Handling RoutinesImplementation
function RightAlignStr (const S: string; const N: LongWord): string; begin Result := PadLeftStr (LeftStr (S, N), N); End; |
|