]> git.donarmstrong.com Git - xtable.git/blob - pkg/man/string.Rd
Fixed email address for David Dahl
[xtable.git] / pkg / man / string.Rd
1 \name{string}
2 \alias{string}
3 \alias{print.string}
4 \alias{is.string}
5 \alias{as.string}
6 \alias{+.string}
7 \title{String handling functions}
8 \description{Private functions for conveniently working with strings.}
9 \usage{
10   string(text,file="",append=FALSE)
11   \method{print}{string}(x,...)
12   \method{+}{string}(x,y)
13   as.string(x,file="",append=FALSE)
14   is.string(x)
15 }
16 \arguments{
17   \item{text}{A character object.}
18   \item{file}{Name of the file that should receive the printed string.}
19   \item{append}{Should the printed string be appended to the file?}
20   \item{x}{A \code{string} object.}
21   \item{y}{A \code{string} object.}
22   \item{...}{Additional arguments.  (Currently ignored.)}
23 }
24 \details{
25   These functions are private functions used by \code{print.xtable}.  They are
26   not intended to be used elsewhere.
27 }
28 \author{David Dahl \email{dahl@stat.byu.edu} with contributions and suggestions from many others (see source code).}
29 \seealso{\code{\link{print.xtable}}}
30 \keyword{print}