Saturday, May 16, 2020
What Is Delphis LeftStr Function
Declaration:à functionà LeftStr(constà AString: AnsiString;à constà Count: Integer): AnsiString;overload;à functionà LeftStr(constà AString: WideString;à constà Count: Integer): WideString;à overload; Description Returns a string containing a specified number of characters from the left side of a string. AString represents a string expression from which the leftmost characters are returned. Count indicates how many characters to return. If 0, a zero-length string () is returned. 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 : LeftStr(s,5); // s ABOUT
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.