- :null
- :block
alphabet
get dictionary-index charset for given locale
Parameters
alphabet locale :string :literal
Attributes
lower | return lowercase characters (default) | |
upper | return uppercase characters | |
all | also return non-dictionary characters |
Returns
Examples
copyalphabet'es ; => [a b c d e f g h i j k l m n ñ o p q r s t u v w x y z] alphabet.upper 'es ; => [A B C D E F G H I J K L M N Ñ O P Q R S T U V W X Y Z] alphabet.all 'es ; => [a b c d e f g h i j k l m n ñ o p q r s t u v w x y z á é í ó ú ü] alphabet.lower.upper.all 'es ; => [a b c d e f g h i j k l m n ñ o p q r s t u v w x y z á é í ó ú ü A B C D E F G H I J K L M N Ñ O P Q R S T U V W X Y Z Á É Í Ó Ú Ü]