hi sir,
this is my input
i am very happy
i want this output
i
am
very
happy
this is the program i wrote
but the output is not what i wanted
this is my input
i am very happy
i want this output
i
am
very
happy
this is the program i wrote
Code:
open(FH, "worldaff_join.txt") or die("error opening");
@file=<FH>;
foreach $line (@file)
{
@sentence=split(/ /, $line);
print"@sentence";
}
close(FH);
Comment