alphabet

get dictionary-index charset for given locale


Parameters

alphabet locale :string :literal

Attributes

lowerreturn lowercase characters (default)
upperreturn uppercase characters
allalso return non-dictionary characters

Returns

  • :null
  • :block

Examples

copy
alphabet'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 Á É Í Ó Ú Ü]

Related