Skip to content

Instantly share code, notes, and snippets.

@rklancer
Created November 14, 2014 02:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rklancer/048c55db4e698620a3d7 to your computer and use it in GitHub Desktop.
Save rklancer/048c55db4e698620a3d7 to your computer and use it in GitHub Desktop.
asciify <- function(text) {
text <- stri_trans_general(text, 'Any-Latin')
text <- stri_trans_general(text, 'Any-Publishing')
text <- stri_trans_general(text, 'Latin-Ascii')
text
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment