I'm trying to do a search with regular expressions in an immense json this way:
json = _.filter(dados.responseJSON,function(rst){
return /rst.dst/m == tel
});
But it is not working. The goal is to make the search as if it were LIKE %valor%
of mysql.