RosettaCodeData/Task/Reverse-a-string/R/reverse-a-string-2.r

2 lines
70 B
R
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
revstring <- function(s) paste(rev(strsplit(s,"")[[1]]),collapse="")