René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

instr [VBA]

option explicit

public sub instr_()

  dim str as string

  str = "abcdefghijkl"

  msgBox(instr(str, "d"  ))  ' 4
  msgBox(instr(str, "x"  ))  ' 0
  msgBox(instr(str, "efg"))  ' 5

end sub
See also other VBA stuff