Anda dapat mencoba dengan $where
operator dalam kueri Anda:
{$where: "this.name.replace(/[ -]/g,'') == 'TEST'"}
atau:
{$where: "this.name.match(/T[ -]*E[ -]*S[ -]*T/)"}
atau langsung $regex
:
{name: /T[ -]*E[ -]*S[ -]*T/}
Info lebih lanjut tentang $where
$regex
operator.