Hi all,

i have a data file which contains the value as
Fname=samir Mname=kumar Lname=patry Address=cuttack Nname=satya

in my main program i retive this value like this.
pen CONFIGFILE2, "data.txt" or die $!; { local $/; $/ = undef; $DATA=<CONFIGFILE2>; } print $DATA; # Create a config my $Config = Config::Tiny->new(); # Open the config, replace with read and $DATA with filename $Config = Config::Tiny->read_string( $DATA ); #$Config = Config::Tiny->read( $filename ); # see perldoc Config::Tiny my $s = $Config->{_};

Now i can retive the value as $s->{Fname};

but i want all the value is to be pass by argument to a another module and store in an array there.so that i can retive one by one and pass to the subroutine which create different format of the name and return to the main program.Now i pass it like this
my $FName=$s->{Fname}; my $First=Name::FName($FName);

can i pass all the value in one goal and return back to my main program.or i can use class conpect on this.

In reply to passing an array to mulitipul module and return value from that module by samirpatry

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.