@Password (Formula Language)
Encodes a string.
Syntax
@Password( string )
Parameters
string
Text or text list. The string that you want encoded.
Return value
encodedString
Text or text list. The encoded string.
Usage
If the parameter is a list, the function operates on each element of the list, and the return value is a list with the same number of elements.
@Password is especially useful in an input translation formula to protect a user's password from being seen by others.
Note: There
is no way to decode the original string once it has been encoded by
@Password.
Note: Strings that begin with an open
parenthesis "(" are not encoded.
Examples
- This example returns (0449960361D30391DDA7747D537C32F8).
@Password("chocolate")
- This example returns (EFFF7C4218F3CBD6D7B509CD2E021DD8).
@Password("vanilla")
- This example returns (0449960361D30391DDA7747D537C32F8) and(EFFF7C4218F3CBD6D7B509CD2E021DD8)
in a list.
@Password("chocolate":"vanilla")