obscuredigits(
CARDNUMBER
,
CLEARDIGIT
)

The obscuredigits( function obscures digits in a number (usually a credit card number) with Xs.


Parameters

This function has two parameters:

cardnumber – the number.

cleardigit – the number of digits on the end that will not be obscured.


Description

This function obscures digits in a number (usually a credit card number) with Xs. The first parameter is the number. The second parameter is the number of characters on the end that will NOT be obscured.

obscuredigits("1234-5678-9876-5432",4) ☞ XXXX-XXXX-XXXX-5432
obscuredigits("1234-5678-9876-5432",7) ☞ XXXX-XXXX-XX76-5432

Panorama also has a more general function for obfuscating all kinds of text, see the obfuscate( function.


See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0