标签: javascript regex angular typescript
我找到了解决美国电话号码的方法,请参见stackblitz。
但是如何在电话掩码的开头添加“ +1”? 所以应该像:+1(123)234-2345
答案 0 :(得分:1)
首先,将其删除(如果存在)
if (event.startsWith('+1')) { newVal = newVal.substring(1); }
然后在最后加上它:
newVal = '+1 ' + newVal;
请参见stackblitz。