문자열에서 문자의 위치 찾기 문자열에서 문자의 위치를 찾고 싶습니다. 말하다: string = "the2quickbrownfoxeswere2tired" 함수를 반환 4하고 -s 24의 문자 위치를 .2string 당신이 사용할 수있는 gregexpr gregexpr(pattern ='2',"the2quickbrownfoxeswere2tired") [[1]] [1] 4 24 attr(,"match.length") [1] 1 1 attr(,"useBytes") [1] TRUE 또는 아마도 ( 버전 1.0 기준) 래퍼 인 str_locate_all패키지에서stringrgregexpr stringi::stri_locate_allstringr library(stringr) str_locate_all(patte..