How to seperate credit card number into four digits groups?
iPhone 6 - 64 GB with iOS 8.1.1
1Password Free Edition (don't mind to pay for full if I need to for this feature)
I am a new 1password user and I have entered 10 different CC numbers so far, whenever I need to get my CC number its hard to see 16 digits number on a small screen, is there a way to split numbers into four digit groups like have 1password to show 1234 5678 9012 3456 instead of 1234567890123456
Thanks
Comments
-
It's technically possible to include spaces in a credit card number in 1Password for iOS, however the numeric keyboard displayed doesn't allow you to. If you use 1Password for Mac, you can add the credit card number with spaces there and it will sync to iOS. Another workaround would be pasting your credit card number with spaces into the credit card field in 1Password for iOS when creating or editing the item.
Please let us know if you have any other questions. We're always happy to help!
0 -
Seeing at it seems to be the standard to display credit card numbers in groups of 4 digits, would it be possible to add this to the feature list as a request?
It would be for display purposes only and could be done with a simple regular expression when displaying it:
var number = "5105105105105100";
number.replace(/(\d{4}(?!\s))/g, "$1 ")0 -
We can certainly let our developers know about your request. For now, you can use one of @JasperP's suggestions to have your credit card numbers displayed like that.
Thanks for your feedback! :)
0