Information: Technically any of the AngularJS filters are available.

currency

Formats a number as a currency (ie $1,234.56). When no currency symbol is provided, default symbol for current locale is used.

Usage

{{ target_expression | currency : symbol}}

Arguments

Param Type Details
amount number input to filter
symbol (optional) string Currency symbol or identifier to be displayed

lowercase

Converts string to lowercase.

Usage

{{ target_expression | lowercase}}

uppercase

Converts string to uppercase.

Usage

{{ target_expression | uppercase}}