Improve this Doc View Source $filter
- $filterProvider
 - service in module ng
 
Overview
Filters are used for formatting data displayed to the user.
They can be used in view templates, controllers or services. AngularJS comes with a collection of built-in filters, but it is easy to define your own as well.
The general syntax in templates is as follows:
{{ expression [| filter_name[:parameter_value] ... ] }}
 Usage
$filter(name);
Arguments
| Param | Type | Details | 
|---|---|---|
| name |  String  |    Name of the filter function to retrieve  |  
Returns
Function |  
 the filter function  |  
Example
    © 2010–2018 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
    https://code.angularjs.org/1.7.8/docs/api/ng/service/$filter