Re: Plz HELP

2006-10-18 Thread Mumia W.
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

Re: Plz help

2005-10-11 Thread John W. Krahn
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

Re: Plz help

2005-10-11 Thread Le Sun (Sandy)
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

Re: Plz help

2005-10-11 Thread Xavier Noria
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 //