javascript中的“+”符号后如何解析为零的数字?
How to parse a number having zeros after "+" sign in javascript?
我以给定格式保存了号码:
例如:
+060169034675
+003478596956
...
+000057465744
libphonenumber-js库无法解析这个号码,报错。
现在我想去掉'+'后面的零,这样就容易解析了。
您必须尝试 parseInt 函数,它将 return 您的号码。
console.log(parseInt("+0060169034675"));
console.log("+"+parseInt("+0060169034675"));
我以给定格式保存了号码:
例如:
+060169034675
+003478596956
...
+000057465744
libphonenumber-js库无法解析这个号码,报错。
现在我想去掉'+'后面的零,这样就容易解析了。
您必须尝试 parseInt 函数,它将 return 您的号码。
console.log(parseInt("+0060169034675"));
console.log("+"+parseInt("+0060169034675"));