Tagged Questions

4
votes
5answers
428 views

Does anyone know where there is c# code or a dll which can generate sample credit card numbers

For an application we are working on I need to generate sample credit card numbers which pass the Luhn algorithm but which are also unique, so we cannot use the sample credit card numbers. We need to ...
2
votes
1answer
117 views

Luhn or Verhoeff algorithm for credit card numbers

First of all, I'm not really sure if this should be on stackoverflow but I thought I would try to ask anyway. In the past I have always used the luhn algorithm for error checking in credit card ...
2
votes
4answers
213 views

Identify card type from card number

i have an array of card types that looks something like this var cards = new Array(); cards [0] = {name: "VISA", length: "13,16", prefixes: "4", checkdigit: true}; cards [1] = {name: ...
1
vote
3answers
129 views

Chunk a string every odd and even position

I know nothing about javascript. Assuming the string "3005600008000", I need to find a way to multiply all the digits in the odd numbered positions by 2 and the digits in the even numbered positions ...