RightAfterStr Function |
Unit
QESBPCSConvert
Declaration
Function RightAfterStr(const S: string; const N: LongWord): string;
Description
Also See: RightStr, RightAfterChStr, LeftStr
Parameters |
S | the String from which the right substring is to be taken. |
N | the number of leading characters to skip. If Length (S) < N then a null string is returned. |
Category
Extra String Handling RoutinesImplementation
function RightAfterStr (const S: string; const N: LongWord): string; begin Result := Copy (S, N + 1, Int64 (Length (S)) - N); // Return the string remaining after the Nth character End; |
|