Saturday, January 4, 2020
Learn About the Delphis RightStr Function
Declaration:à functionà RightStr(constà AString: AnsiString;à constà Count: Integer): AnsiString;overload;functionà RightStr(constà AString: WideString;à constà Count: Integer): WideString;overload; Description 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. The count indicates how many characters to return. If greater than or equal to the number of characters in AString, the entire string is returned. Example var s : string; s : ABOUT DELPHI PROGRAMMING; s : RightStr(s,5); // s MMING
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.