I am wondering what the InstrRev function is for. Before you tell me to look it up in the helpfile, I don't have vb6. Iv'e seen it in use in a couple of vb6 samples here and there.
Printable View
I am wondering what the InstrRev function is for. Before you tell me to look it up in the helpfile, I don't have vb6. Iv'e seen it in use in a couple of vb6 samples here and there.
InStr specifies the position of the first occurrence of one string within another. InStrRev is exactly the same except it starts searching at the end of the string (whereas InStr starts at the beginning of a string).
in other words, it returns the position of the last occurance of the string?
how would i go about duplicating that functionality in vb5?