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