Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: The Code for counting unique words (help?)

by lyklev (Pilgrim)
on Oct 22, 2006 at 14:27 UTC ( [id://579861]=note: print w/replies, xml ) Need Help??


in reply to The Code for counting unique words (help?)
in thread Just starting out with Perl

I see a small pitfall in your code.

You split on spaces using a regular expression. The consequence of this is that the array you get will contain empty (undefined) elements and this will give you headaches in the remainder of the excercise.

The solution is to split on the character space instead. So

split (' ', ...)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (7)
As of 2024-03-28 21:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found