Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Re: tutelage needed

by ctp (Beadle)
on Jan 01, 2004 at 03:16 UTC ( [id://318074]=note: print w/replies, xml ) Need Help??


in reply to Re: tutelage needed
in thread tutelage needed

Are you familiar with Perl hashes?

getting there

That can be applied to a wordcount by just incrementing the value keyed by each word you see

I planned on needing to use a hash here, but it was the creation and filling of that hash that had me stuck...actually it was just the filling of it, they're pretty easy to create :)

Your split doesn't do exactly what you want

ah...good suggestions, I'll go try them out

Check out the length function.

I did earlier in my attempts, but I didn't get very usable results. It told me every word was 1 byte long regardless of actual length. Probably not using it right.

What is unexpected about the behavior of apostrophes?

well, I consider a word like dog's, or cat's a 4 letter word, but my script doesn't seem to.

Replies are listed 'Best First'.
Re: Re: Re: tutelage needed
by Trimbach (Curate) on Jan 01, 2004 at 05:12 UTC
    well, I consider a word like dog's, or cat's a 4 letter word, but my script doesn't seem to

    Nope, it sure doesn't. Consider your code that picks out the 4 letter words:

    push @gt_three_char_words, $_ if /[a-zA-Z]{4,}/;

    What types of characters "count" when they're counted this way?

    Gary Blackburn
    Trained Killer

      What types of characters "count" when they're counted this way?

      another AHA! moment...thanks!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (2)
As of 2024-04-26 07:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found