1% Generated by roxygen2 (4.1.1): do not edit by hand
2% Please edit documentation in R/pystr_isspace.R
3\name{pystr_isspace}
4\alias{pystr_isspace}
5\title{Check if a string is whitespace.}
6\usage{
7pystr_isspace(str)
8}
9\arguments{
10\item{str}{A character vector.}
11}
12\value{
13A logical vector.
14}
15\description{
16Return \code{TRUE} if there are only whitespace characters in the string and there is at least
17one character, \code{FALSE} otherwise.
18}
19\examples{
20pystr_isspace("    ")
21pystr_isspace("  a ")
22}
23\references{
24\url{https://docs.python.org/3/library/stdtypes.html#str.isspace}
25}
26
27