Hi,

I have a following line stored in one variable $test.

deliver.Admin_Irfan_Project.20060413.212355 . I need to split this line 
into the words and store the output in array.

words should like this.
deliver
admin
irfan
project
20060413
212355

I am using following code to split this line
$test =~ s/^\s+//;
@array = split(/\W/, $test);

but still in my array actual words are not storing.

can anybody plz help me 

Regards
Irfan Sayed

 

Reply via email to