in reply to
Re: putting text into array word by word
in thread putting text into array word by word
Here is my full code:
#! /usr/bin/perl -w
use strict;
my $i = 0;
my $element;
my @words;
my @all_words
open FILE, "<", "input.txt" or die $!;
print "file loaded \n";
while (<FILE>)
{
# the words from *this* line
@words = split('', $_);
push @all_words, @words;
}
print "table loaded \n";
foreach $element (@words)
{
print "$element";
}
the "file loaded" and "table loaded" messages appear, however the elements are not printed afterwards