home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 11 / PCPP11.iso / utils / frogbit / fb-097.exe / COPYLINES3.FB < prev    next >
Encoding:
Text File  |  1997-02-04  |  629 b   |  31 lines

  1.  
  2. // example: copy lines
  3.  
  4.  
  5. // read the data file
  6. input "data2.in"
  7.  
  8. // copy the report-header - up to the start of the
  9. // first group
  10. copy lines until (line beginsWith "Group")
  11.  
  12. // loop over each group
  13. do
  14.  
  15.   // write the "Group" line
  16.   write
  17.  
  18.   // copy the group summary - up to the start of
  19.   // the group detail section
  20.   copy lines until (line beginsWith "Detailed Analysis")
  21.  
  22.   // skip the detailed analysis - up to the start of
  23.   // the next group
  24.   skip lines until (line beginsWith "Group")
  25.  
  26.   // comment out the next line to make the program run faster
  27.   refresh
  28.  
  29. loop until (noneLeft input)
  30.  
  31.