in reply to Re^4: get a certain number of words from a line
in thread get a certain number of words from a line
greg@sparky:~/test$ cat enum #!/usr/bin/perl -w use Data::Dumper; $ref=\(0..3); $enum_list=\(4,5,6); print "\n".Dumper($ref)."\n"; print "\n".Dumper($enum_list)."\n"; greg@sparky:~/test$ ./enum $VAR1 = [ 0, 1, 2, 3 ]; $VAR1 = \6;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: get a certain number of words from a line
by Roy Johnson (Monsignor) on Jun 15, 2004 at 21:29 UTC | |
by sleepingsquirrel (Chaplain) on Jun 16, 2004 at 01:31 UTC |