str_rev: Reverse Text Strings

Description Usage Arguments Value Author(s) See Also Examples

Description

Create a reverse version of strings.

Usage

1
2
3

Arguments

x

vector with strings. Is coerced to character.

Value

Returns a character vector with reversed strings.

Author(s)

Sven E. Templer

See Also

rev

Examples

1
2
3
4
5
6
7
#

s <- c("abc","asdf")

str_rev(s)

#

Example output

[1] "cba"  "fdsa"

miscset documentation built on May 2, 2019, 4:01 a.m.