Skip to content

Instantly share code, notes, and snippets.

@dialektike
Created January 22, 2016 07:13
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 dialektike/4973ba184b8c6ccc49da to your computer and use it in GitHub Desktop.
Save dialektike/4973ba184b8c6ccc49da to your computer and use it in GitHub Desktop.
> test <- c("Test tesT") ##입력
> test ## 확인
[1] "Test tesT"
> tolower(test) ## 소문자로 바꿉니다.
[1] "test test"
> toupper(test) ## 대문자로 바꿉니다.
[1] "TEST TEST"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment