StringField(String$, -1, Delimiter$)
Posted: Thu Dec 09, 2004 6:09 pm
Return the last string field when passing -1 index, done in an efficient way start parsing at the end of the string
it comes handy to get fileextensions or filenames from urls
StringField("http://host.com/file.htm", -1, "/")
StringField("c:\foo\file.ext", -1, ".")
i know there are several ways for this(don't need to post code), but it seems StringField() is well suited for it
it comes handy to get fileextensions or filenames from urls
StringField("http://host.com/file.htm", -1, "/")
StringField("c:\foo\file.ext", -1, ".")
i know there are several ways for this(don't need to post code), but it seems StringField() is well suited for it