stringi (version 1.2.4)

stri_reverse: Reverse Each String

Description

Reverses code points in every string.

Usage

stri_reverse(str)

Arguments

str

character vector

Value

Returns a character vector.

Details

Note that this operation may result in non-Unicode-normalized strings and may give strange output for bidirectional strings.

See also stri_rand_shuffle for a random permutation of code points.

Examples

Run this code
# NOT RUN {
stri_reverse(c("123", "abc d e f"))
stri_reverse("ZXY (\u0105\u0104123$^).")
stri_reverse(stri_trans_nfd('\u0105')) == stri_trans_nfd('\u0105') # A, ogonek -> agonek, A

# }

Run the code above in your browser using DataCamp Workspace