instr() function

  • Thread starter Thread starter Bharath
  • Start date Start date
Can i get the code for the instr() function?

No, it's proprietary Microsoft source code. Read your EULA - it
specifically prohibits reverse-engineering or decompiling Microsoft's
code.

Why? What are you trying to accomplish?
 
Do you want the syntax?
Instr(Start,SourceString,TargetString,CompareType)

Start: Optional, and a positive integer
SourceString: a string in which you are searching for the
TargetString: what you are looking for
CompareType: 0,1, or 2. 0 - binary compare; 1 - text compare; 2 system setting
 
Back
Top