Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

actually i have a test file tahat contains more than 100 lines of data the text filr is look like this

Model PID PID Category PID Heading PID Description Application Edit Vendor List Price Weight Published Indicator Macktraq Version Date Opt Type Production Delay PSI Rating

TD703 5050006 ORDER/CUSTOMER/VEHICLE INFORMATION INITIAL REGISTRATION LOCATION ALBERTA Vendor No Charge 0 P 13A 12/22/2011 O
TD703 5050006 ORDER/CUSTOMER/VEHICLE INFORMATION INITIAL REGISTRATION LOCATION BRITISH COLUMBIA Vendor P 13A 12/22/2011
O
TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -117 0 P 13A 12/22/2011 O
TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -118 0 L 13B 12/22/2011 O
TD703 2741026 FRAME/WHEELBASE/PLATFORM FRAME RAILS 11.811" x 3.54" x .32" (300 x 90 x 8mm) STEEL Vendor No Charge 0 P 13A 12/22/2011 S
TD703 2741027 FRAME/WHEELBASE/PLATFORM FRAME RAILS 11.811" x 3.54" x .37" (300 x 90 x 9.5mm) STEEL Vendor No Charge 0 P 13A 12/22/2011 O
TD703 2741028 FRAME/WHEELBASE/PLATFORM FRAME RAILS 11.811" x 3.54" x .44" (300 x 90 x 11.1mm) STEEL Vendor No Charge 0 P 13A 12/22/2011 O

Here while clicking the run button it should read data from this file and should check how many PID is there in the file that start with 274.If 274 is found 2 then write the entire file as it is in addition to this it should how many PID is there which start with the 272.If it is 3 then 2*6=6 six times the record which starts with 272 should write on file i wrote the code this

   fp          :   TStrings;
   flag        :   Integer;

        //checking how many 274 is there 

          if copy(qi.PID,1,3)='274' then
            begin
              //ShowMessage('pid'+copy(qi.PID,1,3));
              fp.Add(qi.PID);
              flag:=1;
            end;
       //writing that times to file 

            if copy(qi.PID,1,3)='272' then
                  begin
                    for i:=0 to fp.Count-1 do


                       // ShowMessage(qi.PID);
                        Writeln(fFile, BuildQuoteLine(QI));
                        //Inc(gSpecInfo.PidInfo.PidPtr, 5);

                    end;
                  end;

Here i got the output like this

Model PID PID Category PID Heading PID Description Application Edit Vendor List Price Weight Published Indicator Macktraq Version Date Opt Type Production Delay PSI Rating

TD703 5050006 ORDER/CUSTOMER/VEHICLE INFORMATION INITIAL REGISTRATION LOCATION ALBERTA Vendor No Charge 0 P 13A 12/22/2011 O
TD703 5050006 ORDER/CUSTOMER/VEHICLE INFORMATION INITIAL REGISTRATION LOCATION BRITISH COLUMBIA Vendor P 13A 12/22/2011
O
TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -117 0 P 13A 12/22/2011 O
TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -117 0 P 13A 12/22/2011 O
TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -117 0 P 13A 12/22/2011 O

TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -118 0 L 13B 12/22/2011 O
TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -118 0 L 13B 12/22/2011 O
TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -118 0 L 13B 12/22/2011 O
TD703 2741026 FRAME/WHEELBASE/PLATFORM FRAME RAILS 11.811" x 3.54" x .32" (300 x 90 x 8mm) STEEL Vendor No Charge 0 P 13A 12/22/2011 S
TD703 2741027 FRAME/WHEELBASE/PLATFORM FRAME RAILS 11.811" x 3.54" x .37" (300 x 90 x 9.5mm) STEEL Vendor No Charge 0 P 13A 12/22/2011 O
TD703 2741028 FRAME/WHEELBASE/PLATFORM FRAME RAILS 11.811" x 3.54" x .44" (300 x 90 x 11.1mm) STEEL Vendor No Charge 0 P 13A 12/22/2011 O

but i want the output like this

Model PID PID Category PID Heading PID Description Application Edit Vendor List Price Weight Published Indicator Macktraq Version Date Opt Type Production Delay PSI Rating TD703 5050006 ORDER/CUSTOMER/VEHICLE INFORMATION INITIAL REGISTRATION LOCATION ALBERTA Vendor No Charge 0 P 13A 12/22/2011 O
TD703 5050006 ORDER/CUSTOMER/VEHICLE INFORMATION INITIAL REGISTRATION LOCATION BRITISH COLUMBIA Vendor P 13A 12/22/2011
O

TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -117 0 P 13A 12/22/2011 O
TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -118 0 L 13B 12/22/2011 O
TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -117 0 P 13A 12/22/2011 O
TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -118 0 L 13B 12/22/2011 O
TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -117 0 P 13A 12/22/2011 O
TD703 2720132 FRAME/WHEELBASE/PLATFORM PLATFORM 132" LP (3353 mm) 56" AF (1430 mm) USED WITH 161" WB Vendor -118 0 L 13B 12/22/2011 O

TD703 2741027 FRAME/WHEELBASE/PLATFORM FRAME RAILS 11.811" x 3.54" x .37" (300 x 90 x 9.5mm) STEEL Vendor No Charge 0 P 13A 12/22/2011 O
TD703 2741028 FRAME/WHEELBASE/PLATFORM FRAME RAILS 11.811" x 3.54" x .44" (300 x 90 x 11.1mm) STEEL Vendor No Charge 0 P 13A 12/22/2011 O

share|improve this question
1  
use a for loop. Do you know how to read the file? Do you know how to write a file? Which part are you stuck on? What did you try so far? – David Heffernan Dec 22 '11 at 9:29
-1 Your question is now unrecognisable from the one you first asked. Please work out what you want and don't expect us to read your mind. – David Heffernan Dec 22 '11 at 12:13
This really isn't clear and after reading your question I'm not sure that is the output you want. My crystal ball says you want to find each Unique model, and for each model output the different Frames, for each frame output the different platforms and then append this grouped/sorted information to the end of the file. After you've clarified what you want to output I've no doubt somewill will be able to help you. – JamesB Dec 22 '11 at 14:18

closed as too localized by casperOne Dec 23 '11 at 2:02

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

If you use text files this article will help you to understand basic reading and writing operations.

Btw you can use Append procedure for appending data to existing file.

share|improve this answer

you can try this

  var
   str,temsTlist : TStringList;
     i,j : integer;
     begin
       str        :=TStringList.Create;
       temsTlist  :=TStringList.Create;
       try
         str.LoadFromFile('C:\lee.txt');
         temsTlist.AddStrings(str);
         str.clear;
         str.AddStrings(temsTlist);
         str.AddStrings(temsTlist);
         str.AddStrings(temsTlist);
         str.SaveToFile('C:\lee.txt');
       finally
     begin
       str.Free;
       temsTlist.Free;
     end;
    end;//try  
  end;
share|improve this answer
but here i want to count the how many pid is there starting with 272 and 274.(if it is 2 amd 3 ) Then i want to write all the data as it is in addition to that i want to write two times whose pid is starting with 272 . – Abdul Salam Dec 22 '11 at 10:26
you edited the question? – PresleyDias Dec 22 '11 at 10:45

Not the answer you're looking for? Browse other questions tagged or ask your own question.