Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

You do not seem to understand the comments you receive in your earlier threads. Re-posting will not get you much in the Monastery.

Here is a list of your troubles:

  1. $first and $second do not seem to be declared with my.
  2. @firstcolumn and @secondcolumn need to exist during the whole loop and but are being re-instantiated in each iteration. They need to be declared before the loop.
  3. <FILE> reads your file until and including a newline, chomp removes that newline, so $_ contains no newline. And therefore $first and $second do not contain any newlines, splitting on newlines makes no sense.
  4. $a and $b are also re-declared in every iteration of the loop, so their value from previous lines is forgotten every time you read a new line from the file.
This is not all but should get you started.


In reply to Re: unable to parse different rows in array by hdb
in thread unable to parse different rows in array by rocketperl

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (6)
As of 2024-04-19 08:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found