|
CharacterRange
CharacterRange[" ", " "] yields a list of the characters in the range from " " to " ".
Example: CharacterRange["A", "D"]  .
CharacterRange["a", "z"] yields the English alphabet.
CharacterRange["0", "9"] yields a list of digits.
CharacterRange[" ", " "] gives the list of characters with character codes from ToCharacterCode[" "] to ToCharacterCode[" "].
CharacterRange["b", "a"] gives { }.
See Section 2.8.4.
See also: FromCharacterCode, Range, Sort, Symbol, Unique.
New in Version 3.
|