Description Usage Arguments Details Value Author(s) See Also Examples
Reverses the order of the code points in every string.
1 |
str |
character vector |
Note that this operation may result in non-Unicode-normalized strings and may give peculiar outputs for bidirectional strings.
See also stri_rand_shuffle
for a random permutation
of code points.
Returns a character vector.
Marek Gagolewski and other contributors
The official online manual of stringi at https://stringi.gagolewski.com/
1 2 3 | 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
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.