I am creating a perl script to go through a text file and remove any identifying information (basically names and places in this first pass). The tack that I am going to take is to use some simple heuristics (Look for Mr., Mrs.,) etc. and then run each word through a dictionary (without a proper name list). Any word NOT found in the dictionary will get changed.
My question: Is there a way to easily connect one of the open-source dictionaries (ispell) to perl to do this? Or is there a better way? TIA!