Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- SIx Driver RDD v3.00 - Reference Guide - <b>sx_wildmatch():</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
  Sx_WildMatch():

  Syntax:   Sx_WildMatch( cPattern, cValue )

            cPattern = Pattern string to match (may include wildcard
                       characters)
            cValue   = String to compare against pattern string

  Returns:  <logical> .T. if the value string matches the wildcard
            pattern, .F. if it doesn't match.

  Description:  Compares a character string with a pattern string.  The
                pattern string may consist of one or more wildcard characters
                (? or *), which are treated in the traditional manner
                (? matches any one character, * matches any one or more
                characters).


  Example:   // To browse all people named Smith or Smyth
             LOCAL cSearchStr := "Sm?th"
             FIELD LASTNAME
             USE TEST VIA "SIXCDX"
             SET FILTER TO Sx_WildMatch( cSearchStr, LASTNAME )
             Browse()


See Also: Sx_WildSeek() WILDSEEK

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson