Take a look at this link http://jsbin.com/xuyuy/1/edit
If you want to filter data in your repeater, you can create a new array called personsfiltered
ng-repeat="person in personsfilterd = (persons | filter : search )
Then, you can display the length of both the original array and the filtered array:
Showing {{personsfilterd.length}} of {{persons.length }} results
Here is the complete code snippet:
var app = angular.module('app', []);
app.controller('fCtrl', function($scope) {
$scope.persons = [
'Mike', 'Tom', 'Tim', 'Jim', 'Ken'
]
});
<div ng-app="app">
<div ng-controller="fCtrl">
<input type="text" ng-model = "search"> Showing {{personsfilterd.length}} of {{persons.length }} results
<li ng-repeat="person in personsfilterd = (persons | filter : search )">{{person}}</li>
</div>
</div>