stringr 패키지 - str_detect 함수


> fruits <- c('apple', 'Apple', 'banana', 'pineapple')

> str_detect(fruits, "A")

[1] FALSE  TRUE FALSE FALSE

> str_detect(fruits, "^a") #a 시작하는 문자

[1]  TRUE FALSE FALSE FALSE

> str_detect(fruits, "e$") #e 끝나는 문자

[1]  TRUE  TRUE FALSE  TRUE

> str_detect(fruits, "^[aA]") #a OR A 시작하는 문자

[1]  TRUE  TRUE FALSE FALSE

> str_detect(fruits, "[aA]") #a OR A 들어가있는 문자

[1] TRUE TRUE TRUE TRUE



출처 : https://blog.naver.com/1stwook/220669068544

'programing > R studio' 카테고리의 다른 글

r 웹크롤링 - 베스트셀러 순위 보기  (0) 2018.05.17
tm 패키지  (0) 2018.05.17
stopwords(불용어)  (0) 2018.05.17
lapply와 do.call  (0) 2018.05.16
정규식 기호  (0) 2018.05.15

+ Recent posts