Learn R Programming

pystr (version 2.0.0)

pystr_rstrip: Right strip a string.

Description

Return a copy of the string with trailing characters removed.

Usage

pystr_rstrip(str, chars = " ")

Arguments

str
A character vector.
chars
A character string.

Value

A character vector.

Details

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 suffix; rather, all combinations of its values are stripped.

References

https://docs.python.org/3/library/stdtypes.html#str.rstrip

See Also

pystr_lstrip

Examples

Run this code
pystr_rstrip("    spacious     ")
pystr_rstrip("www.example.com", ".omc")

Run the code above in your browser using DataLab