String 字元/判斷特徵 (pattern) 存在與否及存在位置

  • 在文字中判斷某些特徵或關鍵字是否有出現其中
  • 在 R 語言中可以使用
    • grepl() 函數: 判斷是否存在
    • gregexpr() 函數: 將所有特徵的索引值找出來
shaq <- "Shaquille O'Neal"

grepl(shaq, pattern = "a")
## [1] TRUE

gregexpr(shaq, pattern = "a")[[1]]
## [1]  3 15
## attr(,"match.length")
## [1] 1 1
## attr(,"useBytes")
## [1] TRUE

Reference:

results matching ""

    No results matching ""