Delphi Programming RTL Reference|By Category|Alphabetically|By Unit
function RightStr(const AString: AnsiString; const Count: Integer): AnsiString; overload;
function RightStr(const AString: WideString; const Count: Integer): WideString; overload;
Returns a string containing a specified number of characters from the right side of a string.
AString represents a string expression from which the rightmost characters are returned. Count indicates how many characters to return. If greater than or equal to the number of characters in AString, the entire string is returned.
var s : string;
s := 'ABOUT DELPHI PROGRAMMING';
s := RightStr(s,5);
// s = 'MMING'
|
String Types in Delphi
Understanding and managing string data types in Delphi's Object Pascal. Learn about differences between Short, Long, Wide and null-terminated strings.
LeftStr,
Pos,
Length,
Copy,
|
Free Delphi code snippet inside every Delphi Newsletter! |
|
|
|
Got some code to share? Got a question? Need some help? |
|
|