1% Generated by roxygen2 (4.1.1): do not edit by hand
2% Please edit documentation in R/pystr_isnumeric.R
3\name{pystr_isnumeric}
4\alias{pystr_isnumeric}
5\title{Check if a string is numeric.}
6\usage{
7pystr_isnumeric(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 numeric characters, and there is at least one
17character, \code{FALSE} otherwise.
18}
19\examples{
20pystr_isnumeric("123")
21pystr_isnumeric("123a")
22pystr_isnumeric("123!")
23}
24\references{
25\url{https://docs.python.org/3/library/stdtypes.html#str.isnumeric}
26}
27\seealso{
28\code{\link{pystr_isalpha}}, \code{\link{pystr_isalnum}}
29}
30
31