Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

InstrRev - Backward Instr for VB4 and VB5
[ All Languages » VB »  String]

Total Hit ( 1713)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


Click here to copy the following block
' A clone of VB6's InstrRev function (including its quirks)
' that works under VB4 and VB5

Function InstrRev(StringCheck As String, StringMatch As String, _
  Optional Start As Long = -1, Optional Compare As VbCompareMethod = _
  vbBinaryCompare) As Long

  Dim index As Long
  Dim lastIndex As Long
  
  If Start > Len(StringCheck) Then
    ' this is probably a quirk in VB6's InstrRev function: when
    ' start is higher than the source string length, the function
    ' returns zero
    Exit Function
  ElseIf Start < 0 Then
    ' if Start is omitted, last valid index is the end of string
    lastIndex = Len(StringCheck)
  Else
    ' else, we must account for the length of the searched string
    ' (this is the way VB6's InstrRev function works)
    lastIndex = Start + 1 - Len(StringMatch)
  End If
  
  Do
    index = InStr(index + 1, StringCheck, StringMatch, Compare)
    ' exit if not found, or if it's past the start index
    If index = 0 Or index > lastIndex Then Exit Do
    ' remember the index we've just found
    InstrRev = index
  Loop
  
End Function


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.