I need to be able to find accented strings like "Błachowicz", "Jędrzejczyk", "Bęben" with "Blachowicz", "Jedrzejczyk", "Beben"
The accents are from Polish language, the strings are in Mongo database.
I tried
db.fighters.find({ surname: { $regex: new RegExp(".*" + 'Blachowicz' + ".*", "i") } } )
but it doesn't work.