home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_BAS / PBC23C.ZIP / SSRCH.BAS < prev    next >
BASIC Source File  |  1994-03-13  |  522b  |  10 lines

  1. '   +----------------------------------------------------------------------+
  2. '   |                                                                      |
  3. '   |        PBClone  Copyright (c) 1990-1994  Thomas G. Hanlin III        |
  4. '   |                                                                      |
  5. '   +----------------------------------------------------------------------+
  6.  
  7. SUB SSrch (SubSt$, MainSt$, FoundMatch%)
  8.    FoundMatch% = (INSTR(UCASE$(MainSt$), UCASE$(LTRIM$(RTRIM$(SubSt$)))) > 0)
  9. END SUB
  10.