Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #' Sorts letters in a character string by alphabetical order
  2. #'
  3. #' Vectorised
  4. str_arrange <- function(x){
  5. x %>%
  6. stringr::str_split("") %>% # Split string into letters
  7. purrr::map(~sort(.) %>% paste(collapse = "")) %>% # Sort and re-combine
  8. as_vector() # Convert list into vector
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement