<-- Previous || Up || Next -->

In Str Characters Reverse Function
String Searches Class

Public Function InStrCharactersReverse( _
      ByVal vStartPos As Variant _
    , ByVal vLine As Variant _
    , ByVal vFindChars As Variant _
    , Optional ByVal vCompare As Variant _
    ) As Variant

"In String Characters Reverse"
Return the last position within string vLine of any of the characters within vFindChars.
Similar to the InStrCharacters function except that this one searches the string vLine from right-to-left.

Examples:
    InStrCharactersReverse(Null, "123CABBAC", "ABC") = 9
    InStrCharactersReverse(6, "CBA123CBA", "ABC") = 3
See also:
    InStrCharactersReverseFast Function
    InStrNotCharactersReverse Function
    InStrCharacters Function
vLine: The string which is to be searched from right-to-left for characters that appear in string vFindChars. Function returns Null if vLine is Null or cannot be fixed up to a String.

vFindChars: String containing characters that are to be searched for within string vLine. Function returns Null if vFindChars is Null or cannot be fixed up to a String.

Function returns 0 (zero) if vFindChars is an empty string.

vStartPos: The position of the character in string vLine where the search is to begin. vStartPos defaults to the position of the last character in the string vLine (the length of the line) if it is Null or cannot be fixed up to a number.

vCompare: Specifies the type of comparison used to find matching characters present in both strings. vCompare defaults to Binary comparisons if it is missing or Null or cannot be fixed up to a number.

Function returns 0 (zero) if none of the characters in string vFindChars appear within string vLine.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.