Align Phone Number With Angular Pipe

老子叫甜甜 提交于 2019-12-11 03:33:49

问题


I am trying to beautify phone number(999 999 9999) and display with Angular Pipe. Is there is any pipe to do that? Please help me out

TS

public phone;
this.phone = 9999999999;

HTML

<h1>{{phone | ?? }}</h1>

回答1:


You can do it with angular ‘slice’ pipe. Exp:

{{ phone | slice:0:2 }} - {{ phone | slice:3:5 }}

like that...



来源:https://stackoverflow.com/questions/54806689/align-phone-number-with-angular-pipe

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!