Return the last occurrence of a set of delimiters in a string.
Source position: sysstrh.inc line 257
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.