Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^2: putting text into array word by word

by jms53 (Monk)
on Jan 09, 2012 at 18:35 UTC ( [id://947054]=note: print w/replies, xml ) Need Help??


in reply to Re: putting text into array word by word
in thread putting text into array word by word

I have tried your code, and although I get no syntax errors, it does not print the array

using the following code

#! /usr/bin/perl -w use strict; open(FILE,"<input.txt"); print "file loaded \n"; my @lines=<FILE>; my @temp_arr; close(FILE); my @all_words; foreach my $line(@lines) { @temp_arr=split('\s',$line); push(@all_words,@temp_arr); } print "@all_words\n";

Replies are listed 'Best First'.
Re^3: putting text into array word by word
by ansh batra (Friar) on Jan 09, 2012 at 18:39 UTC
    check your file from which you are taking the input.
    since you used +> parameter earlier , perl have deleted its contents.

      PERFECT, Thank you sooo much

      I can now go back to calmly pseudo-geeking.

        OK, now that's solved, let's look at the definition of 'word' (yes, things are going to get hairy...). Take this sentence, for example:

        "No, he said."

        The 'words' that your current code would extract are:

        "No, he said."

        Is that really what you want? Or would you prefer:

        No # or, better, 'no' he said

        ?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://947054]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (4)
As of 2024-04-19 06:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found