| int2char {VLMC} | R Documentation |
Character - Integer Conversion
Description
Simple conversion utilities for character to integer conversion and vice versa.
Usage
int2char(i, alpha)
char2int(x, alpha)
Arguments
i |
integer vectors, typically in |
alpha |
character string with several letters, representing the alphabet. |
x |
character string, typically with letters from |
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 !).
See Also
int2alpha() (which is used by int2char)
and its inverse, int2alpha(), both working with vectors
of single characters instead of multi-character strings.
Examples
char2int("vlmc", paste(letters, collapse=""))
int2char(c(0:3, 3:1), "abcd")
int2char(c(1:0,3,3), "abc") # to eat ;-)
[Package VLMC version 1.4-3-1 Index]