[Overview][Constants][Types][Classes][Procedures and functions][Variables] | Reference for unit 'sysutils' (#rtl) |
Return the last occurrence of a set of delimiters in a string.
Source position: sysstrh.inc line 197
function LastDelimiter( |
const Delimiters: String; |
const S: String |
):Integer; |
Program example88; { This program demonstrates the LastDelimiter function } uses SysUtils; begin Writeln(LastDelimiter('\.:','c:\filename.ext')); end.
No notes exist for this page yet.