powered by
Caesar-shift a string by a given number of letters.
rot(x, n = 13, alphabet = standard_alphabet, showWarn = TRUE)
A string.
A number of letters to shift the string by.
A list containing lower and upper case alphabets.
boolean. Do you want to see warnings about alphabets?
A string
# NOT RUN { rot("abc") rot("abc", n=2) rot("abc", n=5, list(lw=letters[1:7], up=LETTERS[1:7])) # }
Run the code above in your browser using DataLab