Mega Code Archive

 
Categories / Delphi / Functions
 

Ansirightstr - extracts characters from the right of a string strutils unit

function AnsiRightStr ( const Source : AnsiString; const Count : Integer ) : AnsiString; Description The AnsiRightStr extracts characters from the right of a string. It attempts to return the rightmost Count characters from Source. If Count exceeds the size of the source, the whole of source is returned. Related commands AnsiLeftStr Extracts characters from the left of a string AnsiMidStr Returns a substring from the middle characters of a string Example code : A simple example var source, target : AnsiString; begin source := '123456789'; target := AnsiRightStr(source, 3); ShowMessage('Source = '+source); ShowMessage('Target = '+target); end; Show full unit code Source = 123456789 Target = 789