Description Usage Arguments Details Value References See Also Examples
Return a copy of the string with leading characters removed.
1 | pystr_lstrip(str, chars = " ")
|
str |
A character vector. |
chars |
A character string. |
The chars
argument is a string specifying the set of characters to be removed.
If omitted, the chars
argument defaults to removing whitespace.
The chars
argument is not a prefix; rather, all combinations of its values are stripped.
A character vector.
https://docs.python.org/3/library/stdtypes.html#str.lstrip
1 2 | pystr_lstrip(" spacious ")
pystr_lstrip("www.example.com", "w.")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.