Author Topic: Microsoft Access Function Library: InStrRev()  (Read 4616 times)

bbasujon

  • Administrator
  • VIP Member
  • *****
  • Posts: 1826
  • I want to show my performance at any where
    • View Profile
    • Higher Education
Microsoft Access Function Library: InStrRev()
« on: August 15, 2012, 05:21:21 PM »
Function: InStrRev()

Purpose: The InStr() function returns a number corresponding to the first location of a substring within a string, with the comparison beginning at the end of the searched string.

Usage: InStr(string, substring [,start] [,compare])

Start is an option argument specifying the location within the string to start searching. If you do not specify a starting location, Access uses the default value of -1, representing the last character of the string.
String is the string you wish to search within.
Substr is the substring you wish to locate within String.
Compare is an optional argument specifying the type of comparision you wish to use. The possible values are:

    vbUseCompareOption uses the Option Compare statement’s setting. This is the default setting.
    vbBinaryCompare uses a binary comparison.
    vbTextCompare uses a textual comparison.



Returns: Starting position of the substring within the searched string. If string is empty, it returns 0. If string is null, it returns null. If substring is empty, it returns the start value. If substring is null, it returns null. If there is no match, it returns 0.

Example

 InStr("chapple", "ppa") = 3
 InStr("ppa", "chapple") = 0
 InStr("","apple") = 0
 InStr("apple","") = 1
 InStr("apple",NULL) = NULL
 InStr(NULL,"apple") = NULL
 
Acquire the knowledge and share the knowledge so that knowing,learning then sharing - all are the collection