Description Usage Arguments Value Examples
Generates a random password containing the desired number of letters, numeric digits and ASCII symbols.
1 | newpassword(Letters = 8, Numbers = 5, Symbols = 0)
|
Letters |
Number of characters from letters/LETTERS to include. |
Numbers |
Number of digits from 0-9 to include. |
Symbols |
Number of symbol characters to include. |
A randomly generaged password.
1 2 3 4 5 6 | # Defaults; easy to double-click, copy and paste.
newpassword()
# A longer and more complicated password.
newpassword(9,7,5)
# Multiple new passwords.
replicate(10, newpassword())
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.