home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / m / mb1503.zip / WILD.DOC < prev    next >
Text File  |  1991-03-05  |  1KB  |  34 lines

  1.  
  2. Wildcards matches are supported in many places.
  3. With wildcards we match with more than a straight comparison.
  4.  
  5.  
  6.    Special characters in the pattern are:
  7.  
  8.      * -- Matches 0 or more characters of any type.
  9.      @ -- Matches any alpha character (a..z, A..Z).
  10.      ! -- Matches any digit (0..9).
  11.      + -- Matches any alphanumeric character (A..z, A..Z, 0..9).
  12.      ? -- Matches any single character.
  13.      " -- Escape. The next character in the pattern must match the character
  14.       in the target exactly. Wild cards will not be interpreted.
  15.  
  16. Examples:
  17.  
  18.   97*       --  Will match anything starting with 97 such as 97068,
  19.            97123, 97ABC, and 97.
  20.   97???    --  Will match anything that starts with 97 and is 5 characters
  21.            long.  97068 will match but 9706 will not.
  22.   97!!!    --  Will match anything that starts with 97 and has 5 digits.
  23.            97068 will match but 97ABC will not.
  24.   @!@@@    --  Will match a 5 character US callsign such as W0RLI, N6IYA, etc.
  25.   VE!@@@   --  Will match standard Canadian callsigns.
  26.   "!"*     --  Will match *!
  27.   !*       --  Will match anything that starts with a digit.
  28.  
  29.  
  30. Note that within FWD.MB, you cannot use @ as the first character, since
  31. @ is used to branch to another file.  This will be changed in some future
  32. release of the MailBox.
  33.  
  34.