Digits

Function

This module collects individual digit information.

This module is commonly used for things like zip code, credit card number, account ID, or a transaction number. If users have a number that people typically read off each digit individually, then they should use this module.

If the minimum and maximum digits are set, any input that does not match will return a no-match error. For example, if the minimum is set to 2 and the maximum to 4, values like 5 or 54928 would both be invalid.

If the minimum and maximum digits are set to the same number, the input value must be that exact length.

For example, if the min and max are both set to 2, then 5, and 549 would be invalid input, but 54 would be valid.

Because credit card numbers are 16 digits, set both the min and max to 16 (or 15/16 if accepting AMEX) when collecting credit card numbers to ensure data accuracy and transactional efficiency.

Module Settings

Advanced Settings

Advanced Fuse users may want to use shadow variables that are available with input modules. For more information on this functionality, please visit the Shadow Variables page.

Last updated