Hi. I have a problem using a while loop inside a for loop. The for loop does not iterate properly. I am operating in Linux. I have kept some comments in the code to indicate the sort of testing I have been doing. This section of the program is designed to go through a tagged text file and retrieve the lines according to tags (the tags are numbers). These lines have to be retrieved in the iterative order of the tag numbers followed by the order in which they are presented in the input text file. I can not use associated arrays because I am worried about memory requirements. Any help will be much appreciated.
$output_XML_A_open = "output_xml_d.txt"; open (OUTPUT_XML_A_OPEN, "<$output_XML_A_open"); $new_output_xml_a = "new_output_xml_d.txt"; open (NEW_OUTPUT_XML_A, "+>>$new_output_xml_a"); for ($d=1;$d<10;$d++){ while (<OUTPUT_XML_A_OPEN>){ $line = $_; # print "#############"; chomp; if ($line =~ /^(\d{1,10})/){ #print "...............\n"; $key = $1; print "$key\n"; $xml_content = $_; print "does $key = $d"; if ($d =~ /^$key$/){ #print "#########"; print NEW_OUTPUT_XML_A "$xml_content\n"; #if ($line =~ /^(\d{1,10})\s{4}</){ # #text removed #} } } } #close (OUTPUT_XML_A_OPEN); }

In reply to For loop problem by matth

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.