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

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.