Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Extract word

by suaveant (Parson)
on Oct 07, 2011 at 19:05 UTC ( [id://930238]=note: print w/replies, xml ) Need Help??


in reply to Extract word

You ARE skipping and... but you aren't actually DOING anything when you skip it. You load the WHOLE file into $input_file and match words and then skip, but you aren't removing the word from the file. You'd need a substitute s/// to REMOVE text, something like s/(\w[\w'-]*)/$ignore{lc $1} ? '' : $1/g though you'd probably be better off generating a regular expression that matches any words you want, rather than matching all words and comparing against a hash. There are modules out there to do that, I see Regexp::List, though I think there was another one...

That's assuming you just want to remove certain words not the whole line.

Edit Regexp::Assemble is the one I was trying to think of

                - Ant
                - Some of my best work - (1 2 3)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (3)
As of 2024-04-26 04:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found