I'm trying to think of the optimal way to clean up text in a file. So what I want to do is, given an input file, match words that are similar and replace them. So if apple and ApPle are in the file, ApPle would be replaced by apple.
Is there any way to do this without using two for loops like so:
for $word in @file
for $word2 in @file
if $word matches $word2
replace $word2 with $word
end
end
end
I'm always hesitant to use nested for loops so I'm just wondering if there's a more elegant solution. Also, if you're wondering why it's pseudocode, it's because I haven't decided what to program this in yet. (For those who don't know @file is a list of words and $word is a non-whitespace string of characters).