home *** CD-ROM | disk | FTP | other *** search
/ The Best of Windows 95.com 1997 April / Win95_04974.iso / docs / 00013 / 01313.exe / CHOP.FB < prev    next >
Encoding:
Text File  |  1997-02-04  |  315 b   |  18 lines

  1.  
  2. // remove sections looking like this :-
  3.  
  4. //  Summary ...
  5. //  ...
  6. //  Total ...
  7.  
  8. input "report.txt"
  9.  
  10. do
  11.   copy lines until (line beginsWith "Summary")
  12.   skip lines until (line beginsWith "Total")
  13.  
  14.   // comment out the next line to make the program run faster
  15.   refresh
  16.  
  17. loop until (noneLeft input)
  18.