I'm in the process of modifying an existing regex to match Credit Card numbers. Sometimes such numbers are presented as follows that separate the number chunks with spaces or dashes as follows;
3756-4564-2323-3435
3756 6432 3233 435
These types of matches should be preprocessed to remove those special characters. Usually the number chunks are of 3 to 4 digits.
thanks