https://github.com/cran/pracma
Raw File
Tip revision: c1688b374d201c13fb40b4dda2d2a89e34b94ec6 authored by Hans W. Borchers on 23 January 2021, 09:10:02 UTC
version 2.3.3
Tip revision: c1688b3
strtrim.Rd
\name{strTrim}
\alias{strTrim}
\alias{deblank}
\title{
  Remove leading and trailing white space.
}
\description{
  Removes leading and trailing white space from a string.
}
\usage{
strTrim(s)
deblank(s)
}
\arguments{
  \item{s}{character string or character vector}
}
\details{
  \code{strTrim} removes leading and trailing white space from a string or
  from all strings in a character vector.

  \code{deblank} removes trailing white space only from a string or
  from all strings in a character vector.  
}
\value{
  A character string or character vector with (leading and) trailing
  white space.
}
\seealso{
\code{\link{strjust}}
}
\examples{
s <- c("  abc", "abc   ", " abc ", " a b c ", "abc", "a b c")
strTrim(s)
deblank(s)
}
\keyword{ string }
back to top