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