MINI MINI MANI MO
%
% Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
%
\name{ore.character-class}
\docType{class}
\alias{ore.character}
\alias{ore.character-class}
\alias{casefold,ore.character-method}
\alias{casefold,ore.vector-method}
\alias{chartr,character,character,ore.character-method}
\alias{chartr,character,character,ore.vector-method}
\alias{grepl,character,ore.character-method}
\alias{grepl,character,ore.vector-method}
\alias{gsub,character,character,ore.character-method}
\alias{gsub,character,character,ore.vector-method}
\alias{nchar,ore.character-method}
\alias{nchar,ore.vector-method}
\alias{paste}
\alias{paste,ore.vector-method}
\alias{sub,character,character,ore.character-method}
\alias{sub,character,character,ore.vector-method}
\alias{substr,ore.character-method}
\alias{substr,ore.vector-method}
\alias{substring,ore.character-method}
\alias{substring,ore.vector-method}
\alias{tolower,ore.character-method}
\alias{tolower,ore.vector-method}
\alias{toupper,ore.character-method}
\alias{toupper,ore.vector-method}
\title{
Klasse \code{ore.character}
}
\description{
Die Klasse \code{ore.character} stellt
\code{\link[base]{character}}-Datenspalten in Oracle R Enterprise dar.
}
\section{Character Data Methods}{
\describe{
\item{}{
\code{\link[base]{casefold}(x, upper = FALSE)}:
Returns an \code{ore.character} object containing the upper case
or lower case form of argument \code{x}.
}
\item{}{
\code{\link[base]{chartr}(old, new, x)}:
Returns an \code{ore.character} object containing a character
translation version of argument \code{x}.
}
\item{}{
\code{\link[base]{grepl}(pattern, x)}:
Returns an \code{\linkS4class{ore.logical}} object indicating
whether or not the specified \code{pattern} argument is found in
the elements of argument \code{x}.
}
\item{}{
\code{\link[base]{gsub}(pattern, replacement, x)}:
Returns an \code{ore.character} object containing a version of
argument \code{x} where all matches to argument \code{pattern} are
replaced with argument \code{replacement}.
}
\item{}{
\code{\link[base]{nchar}(x, type = "chars")}:
Returns an \code{\linkS4class{ore.integer}} object containing the
number of characters or bytes for the elements in argument \code{x}.
}
\item{}{
\code{\link[base]{paste}(..., sep = " ")}:
Returns an \code{ore.character} object containing a concatenation of
the values in arguments \code{...}.
}
\item{}{
\code{\link[base]{sub}(pattern, replacement, x)}:
Returns an \code{ore.character} object containing a version of
argument \code{x} where the first match to argument \code{pattern}
is replaced with argument \code{replacement}.
}
\item{}{
\code{\link[base]{substr}(x, start, stop)}:
Returns an \code{ore.character} object containing a the specified
substrings for the elements of argument \code{x} that begin at the
location of argument \code{start} and end at the location of
argument \code{stop}.
}
\item{}{
\code{\link[base]{substring}(text, first, last = 1000000L)}:
Returns an \code{ore.character} object containing a the specified
substrings for the elements of argument \code{text} that begin at
the location of argument \code{first} and end at the location of
argument \code{last}.
}
\item{}{
\code{\link[base]{tolower}(x)}:
Returns an \code{ore.character} object containing the lower case
form of argument \code{x}.
}
\item{}{
\code{\link[base]{toupper}(x)}:
Returns an \code{ore.character} object containing the upper case
form of argument \code{x}.
}
}
}
\references{
\href{http://www.oracle.com/technetwork/database/database-technologies/r/r-enterprise/documentation/index.html}{Oracle R Enterprise}
}
\author{
Oracle \email{oracle-r-enterprise@oracle.com}
}
\note{
See the corresponding \R documentation for the functions listed above.
}
\seealso{
\code{\linkS4class{ore}},
\code{\linkS4class{ore.datetime}},
\code{\linkS4class{ore.factor}},
\code{\linkS4class{ore.frame}},
\code{\linkS4class{ore.logical}},
\code{\linkS4class{ore.matrix}},
\code{\linkS4class{ore.number}},
\code{\linkS4class{ore.vector}}
}
\examples{
x <- ore.push("MiXeD cAsE 123")
class(x)
chartr("iXs", "why", x)
chartr("a-cX", "D-Fw", x)
tolower(x)
toupper(x)
}
\keyword{classes}
\keyword{ORE}
OHA YOOOO