Created
December 9, 2014 19:03
-
-
Save infn8/1827192486be214cb3a8 to your computer and use it in GitHub Desktop.
Credit Card Spaces
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function cc_spaces(txt){ | |
// rip all non digits from string | |
txt = txt.toString().replace(/[^\d]/g, ''); | |
format = /(\d{1,4})/g; | |
// test for amex. | |
if (null !== txt.match(/^3[47]/)) { | |
format = /(\d{1,4})(\d{1,6})?(\d{1,5})?/; | |
} | |
matches = txt.match(format); | |
if (null === matches) { | |
return ''; | |
} | |
return matches.join(' '); | |
} | |
// Some Tests | |
console.log("1234567890123456: ", cc_spaces(1234567890123456)); | |
console.log("'1234567890123456': ", cc_spaces('1234567890123456')); | |
console.log("'3734567890373456': ", cc_spaces('3734567890373456')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment