Můžete to zkusit pomocí $where
operátor ve vašem dotazu:
{$where: "this.name.replace(/[ -]/g,'') == 'TEST'"}
nebo:
{$where: "this.name.match(/T[ -]*E[ -]*S[ -]*T/)"}
nebo přímo $regex
:
{name: /T[ -]*E[ -]*S[ -]*T/}
Další informace o $where
$regex
operátory.