1. nchar : 문자의 수를 리턴하는 함수 # 영문 nchar("R Developer") nchar("R Developer",type="chars") # 기본값 nchar("R Developer",type="bytes") # 바이트 단위로 세기 # 한글 nchar("빅데이터",type="chars") nchar("빅데이터",type="bytes") 2. strsplit : 부분문자로 분리하는 함수 # 지정한 문자 단위로 분리 strsplit("R Developer",split= " ") # 한글자씩 분리 strsplit("R Developer",split= character(0)) # 분리된 문자의 타입 및 구조 class(strsplit("R Developer",split= " ")) str(str..