On 10/18/2006 12:14 AM, Dharshana Eswaran wrote:
Hi All,
I am a student who is working on Perl on my project.
I am a beginner in Perl.
I know how to read the data from files into a variable or array. I mean, i
know to read the data line by line into a varaiable or teh full file
contents into a
The Roopak Times wrote:
> Hi All
Hello,
> As i was continuing with perl i created a program to churn out individual
> directory names from a given path in windows.Here is the program:
> #use warnings;
> #use strict;
> Print "Enter the path:";
> my $dir=;
> chomp($dir);
> my @DIR=split ///, $di
The Roopak Times wrote:
Hi All
As i was continuing with perl i created a program to churn out individual
directory names from a given path in windows.Here is the program:
#use warnings;
#use strict;
Print "Enter the path:";
my $dir=;
chomp($dir);
my @DIR=split ///, $dir;
print $DIR[0];
but it th
On Oct 11, 2005, at 11:37, The Roopak Times wrote:
Hi All
As i was continuing with perl i created a program to churn out
individual
directory names from a given path in windows.Here is the program:
#use warnings;
#use strict;
Print "Enter the path:";
my $dir=;
chomp($dir);
my @DIR=split //