I have a .dat file that has about 5000 words in it. I would like a program that removes all string that are more than 5 letters long and that has an upper-case character. For example, if this was my original file:
Code:
Jim
jumpy
cooks
Brite
spark
my new file would only contain the following:
Code:
jumpy
cooks
spark
I am asking this since I am a complete newbie at file processing and I need someone to point me in the right direction. Thank you.