http://qs321.pair.com?node_id=1125951


in reply to Re^2: Find maximum number in text file and copying its full statement in new text file?
in thread Find maximum number in text file and copying its full statement in new text file?

If you are going to print inside the loop, then use of @lines is useless (given the code), for the current line would be the only one (1) element of @lines, ever.

What is your input? What is the highest number printed?

  • Comment on Re^3: Find maximum number in text file and copying its full statement in new text file?
  • Select or Download Code

Replies are listed 'Best First'.
Re^4: Find maximum number in text file and copying its full statement in new text file?
by sumathigokul (Acolyte) on May 07, 2015 at 09:52 UTC

    Yeah its is printing as "Highest number:2", but, its not printing to new file.The following is the input file.

    High fanout nets in the post compile netlist: Fanout Type Name -------------------------- 2 INT_NET Net : c_c Driver: c_pad 2 INT_NET Net : b_c Driver: b_pad 2 INT_NET Net : a_c Driver: a_pad 1 INT_NET Net : sum_c Driver: sum_1_SUM0_0 1 INT_NET Net : N_5 Driver: sum_1_CO0_i

      kcott's version works as you expect. Your modified version (writing lines in a loop to another file) does work here, though output is not what you want.