Simple conversion utilities for character to integer conversion and
vice versa.
Usage
int2char(i, alpha)
char2int(x, alpha)
Value
int2char() gives a string (length 1 character) with as many
characters as length(i), by 0-indexing into the alphabet
alpha.
char2int() gives an integer vector of length nchar(x)
of integer codes according to alpha (starting at 0 !).
Arguments
i
integer vectors, typically in 0:m when alpha
has \(m + 1\) letters.
alpha
character string with several letters, representing the
alphabet.
x
character string, typically with letters from alpha.
See Also
int2alpha() (which is used by int2char)
and its inverse, int2alpha(), both working with vectors
of single characters instead of multi-character strings.