Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^2: How can one get all possible combinations of elements of different arrays using File::Glob(bsd_glob)?

by jwkrahn (Abbot)
on Apr 24, 2013 at 06:45 UTC ( [id://1030289]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # slurp in file into a string
    $/=''; $DNA = <FILE>; 
    # remove \n at end
    chomp($DNA);
    
  2. or download this
    # replace line endings with commata
    $DNA =~ s/\n/,/;
    
  3. or download this
    # replace newlines with commas
    $DNA =~ s/\n/,/g;
    
  4. or download this
    # replace newlines with commas
    $DNA =~ tr/\n/,/;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1030289]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (6)
As of 2024-04-18 00:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found