ourMELONS/man/isspace.Rd

24 lines
549 B
Text
Raw Normal View History

2020-07-28 10:28:15 +02:00
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/isspace.R
\name{isspace}
\alias{isspace}
\title{Determine space characters}
\usage{
isspace(A)
}
\arguments{
\item{A}{a character array or a string scalar}
}
\value{
a vector TF such that the elements of TF are logical 1 (true) where corresponding characters in A are space characters, and logical 0 (false) elsewhere
}
\description{
Determine which characters are space characters
}
\note{
Recognized whitespace characters are ` ` and `\\t`.
}
\author{
Waldir Leoncio
}