About 2,930,000 results
Open links in new tab
  1. javascript - Format credit card number - Stack Overflow

    Apr 25, 2016 · How to format and validate a credit card number with spaces between each 4 digit while typing:

  2. google sheets - How to format (credit card) numbers with 16 …

    Feb 27, 2024 · Storing as a number would be problematic. That is because Google Sheet likely uses IEEE 754 double to store floating point representation for large numbers, which gives 15 …

  3. Regex credit card number tests - Stack Overflow

    A regex is good for a basic "does it look like a card number" but not much beyond that. If you want to use regex just to know the card brand for visual use (like displaying Visa logo or label), that …

  4. using string format for a credit card number - Stack Overflow

    Mar 28, 2011 · John Batdorf is correct here - several card carriers have more or less than the "standard" 16 digits. For example, American Express has 15 digits, arranged in a format of …

  5. regex - credit card input validation using regular expression in ...

    A Regular Expression will only validate the format of an entered value - a regex cannot compute a CC number's check-digit, for example, which should also be done. However I note that these …

  6. Format credit card in edit text in android - Stack Overflow

    Aug 3, 2012 · How to make EditText accept input in format: 4digit 4digit 4digit 4digit I tried Custom format edit text input android to accept credit card number, but unfortunately I was unable to …

  7. Is a credit/debit card number numeric or an integer?

    Sep 1, 2011 · 0 No credit/debit card numbers start with a zero (probably due to discussions like this). All credit/debit card numbers have a check digit that is calculated using the Luhn …

  8. C# Validating User Input like a Credit Card number

    Oct 6, 2015 · This is for an assignment. I need to create a program for a sandwich shop. Part of it is to validate a user's payment info. The guidelines for this assignment are Credit card number …

  9. How to validate a credit card number - Stack Overflow

    I just want to validate a credit card number in the JavaScript code. I have used a regular expression for digit numbers, but I don't know why it is not working! Here is my function as per …

  10. How do you detect Credit card type based on number?

    Sep 16, 2008 · I'm trying to figure out how to detect the type of credit card based purely on its number. Does anyone know of a definitive, reliable way to find this?