rot13 | R Documentation |
rot13 applied to the above title returns the string "Returns the ROT-13 ciphering of a string".
rot13(string)
string |
a string of characters. |
a string of characters.
J.R. Lobry
citation("seqinr")
chartr
##
## Simple ciphering of a string:
##
message <- "Hello, world!"
rot13(message) # "Uryyb, jbeyq!"
##
## Routine sanity check:
##
stopifnot(identical(rot13(rot13(message)), message))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.