| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
Return the last occurrence of a set of delimiters in a string.
Source position: sysstrh.inc line 247
function LastDelimiter(  | 
const Delimiters: string;  | 
const S: string  | 
):SizeInt;  | 
Program example88; { This program demonstrates the LastDelimiter function } uses SysUtils; begin Writeln(LastDelimiter('\.:','c:\filename.ext')); end.