Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. > a <- "Wrocław"
  2. > a
  3. [1] "Wroclaw"
  4.  
  5. > Sys.getlocale()
  6. [1] "LC_COLLATE=English_United States.1252;LC_CTYPE=English_United States.1252;LC_MONETARY=English_United States.1252;LC_NUMERIC=C;LC_TIME=English_United States.1252"
  7.  
  8. Sys.setlocale("LC_ALL", "Polish")
  9.  
  10. > a <- "Wrocław"
  11. > a
  12. [1] "Wroc³aw"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement