You might need the length of filtered data in Angular such as how many posts include the word "angular"

This can be done using the following method:


<div ng-repeat="post in filtered = (data | filter: 'angular')">
  <div> {{filtered.length}} </div>
</div>