Bootstrap

每隔指定字符长度分割字符串//银行卡号格式化

原文:http://www.51xuediannao.com/qd63/index.php/page-2-100-1.html

每隔指定字符长度分割字符串,可以制作银行卡号格式化提示功能。利用正则替换实现。js代码如下;

<script type="text/javascript">

console.log( "548481554521515454848798921258740".replace(/(\d{4})(?=\d)/g,"$1"+"-") )

</script>



;