Alphabets Module
Pre-defined alphabets commonly used to generate identifiers.
Functions and values
| Function or value |
Description
|
Full Usage:
Alphanumeric
Returns: string
|
from 0 to 9, not including any symbols or special characters.
|
Full Usage:
HexadecimalLowercase
Returns: string
|
Hexadecimal lowercase characters: 0123456789abcdef.
|
Full Usage:
HexadecimalUppercase
Returns: string
|
Hexadecimal uppercase characters: 0123456789ABCDEF.
|
Full Usage:
Lowercase
Returns: string
|
Lowercase English letters: abcdefghijklmnopqrstuvwxyz.
|
Full Usage:
NoLookalikes
Returns: string
|
Numbers, Uppercase, and Lowercase without "lookalikes": 1, l, I, 0, O, o, u, v, 5, S, s, 2, Z. Complete set: 346789ABCDEFGHJKLMNPQRTUVWXYabcdefghijkmnpqrtwxyz.
|
Full Usage:
NoLookalikesSafe
Returns: string
|
Same as Nolookalikes -- but having removed vowels and: 3, 4, x, X, V. Complete set: 6789BCDFGHJKLMNPQRTWbcdfghjkmnpqrtwz
|
Full Usage:
Numbers
Returns: string
|
Numbers from 0 to 9.
|
Full Usage:
Uppercase
Returns: string
|
Uppercase English letters: ABCDEFGHIJKLMNOPQRSTUVWXYZ.
|
Full Usage:
UrlSafe
Returns: string
|
URL-friendly numbers, English letters, and symbols:
|
ananoid