in reply to How do I read in a document, remove the stop words and then write the result to a new file?
open(TEST, "results_stopwords.txt") or die("Unable to open requested f +ile.");
to:
openopen(TEST, ">results_stopwords.txt") or die("Unable to open requested +file.");
|
|---|