https://stackoverflow.com/questions/56891796/how-to-hide-currency-symbol-in-angular-currency-pipe
How to hide currency symbol in angular currency pipe
I'm trying to use Angular currency pipe and I wanted to remove the currency symbol all together from the formatted number, but it seems there is no option to do that. So is there any easy way to ac...
stackoverflow.com
방식1 - currency pipe 사용
price | currency:'':''
방식2 - number pipe 사용
{{ 50000 | number }} <!-- output: 50,000 -->
'FE > Angular' 카테고리의 다른 글
[ ANGULAR ] Build 용량 초과 메세지 (0) | 2021.09.27 |
---|---|
[ ANGULAR ] 전역 키보드 이벤트 (0) | 2021.07.30 |
[ ANGULAR ] radio-group change event error (0) | 2021.05.11 |
[ ANGULAR ] Angular Set Time Out (0) | 2021.05.06 |
[ ANGULAR ] keyvalue pipe sort properties / iterate in order (0) | 2021.04.18 |