I have a filter in my controller like this:
$scope.LegEntQueue = $filter('filter')(legEncoderQueue, {FileAppCD: 'ENT'}).length;
Where I am counting the results of an array called legEncoderQueue based on a property called FileAppCD if it has the value of ENT
This works perfectly, but is there a way to have it fuzzy search and select anything that has ENT in the value? Such as ENT-M-And and ENT-M-iOS?
.filterover collection with your own code condition(regex) plain javascript..