This question is a continuation of Java string searching ignoring accents.
The answer to the original question shows us how to remove the diacritics from strings. So, for instance, köln becomes koln. But łódź becomes łodz - note the l with stroke.
My question is how can I remove the stroke as well, so that łódź becomes lodz?
Thanks.