Hi Thanks for your suggestion. But what i need is the program while reading the config file doesn't +take the lines that is started with hash and i can store the elements
  1. Please use <code> tags for... ehm... code, or other preformatted text, I see a strange style of mixing actual text with code from your previous post which I can't understand and which I find to be extremely annoying. And I'm quite sure others will share this feeling;
  2. you asked this sub-question three times. Please don't! You're clearly not a native English speaker (neither am I), thus I suggest you to avoid multiple posts and cope with your lack of language skills by trying to write more carefully single ones;
  3. on to the question... (removing <code> tags!)
in an array and send that array as an argumnet during the calling of a sub routine which present in another module and when that sub returns 1 to the main program then it stores

If I understand correctly, people have just shown you how to parse some input file into a structure that happens to be an @array (of arrays, but that shouldn't make a difference). Now you seem to want this array to be passed to some_routine() in Some::Module. Then one may want to know what kind of arguments that sub accepts: assuming just a list, then

my @output=Some::Module::some_routine(@array); # or my @output=some_routine(@array); if exported

should do. Which specific kind of difficulties are you having with that?


In reply to Re^3: How can i read the lines and store them in an array like following fashion? by blazar
in thread How can i read the lines and store them in an array like following fashion? by sanjay nayak

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.