1% Generated by roxygen2 (4.1.1): do not edit by hand
2% Please edit documentation in R/pystr_lstrip.R
3\name{pystr_lstrip}
4\alias{pystr_lstrip}
5\title{Left strip a string.}
6\usage{
7pystr_lstrip(str, chars = " ")
8}
9\arguments{
10\item{str}{A character vector.}
11
12\item{chars}{A character string.}
13}
14\value{
15A character vector.
16}
17\description{
18Return a copy of the string with leading characters removed.
19}
20\details{
21The \code{chars} argument is a string specifying the set of characters to be removed.
22If omitted, the \code{chars} argument defaults to removing whitespace.
23The \code{chars} argument is not a prefix; rather, all combinations of its values are stripped.
24}
25\examples{
26pystr_lstrip("     spacious    ")
27pystr_lstrip("www.example.com", "w.")
28}
29\references{
30\url{https://docs.python.org/3/library/stdtypes.html#str.lstrip}
31}
32\seealso{
33\code{\link{pystr_rstrip}}
34}
35
36