1. ホーム
  2. regex

[解決済み] 文字列中のある文字の位置を調べる

2023-03-01 17:31:04

質問

文字列中のある文字の位置を知りたい。

言ってみてください。 string = "the2quickbrownfoxeswere2tired"

私はこの関数が 424 -- の文字位置は 2 の中の string .

どのように解決するのですか?

この場合 gregexpr

 gregexpr(pattern ='2',"the2quickbrownfoxeswere2tired")


[[1]]
[1]  4 24
attr(,"match.length")
[1] 1 1
attr(,"useBytes")
[1] TRUE

あるいは str_locate_all パッケージから stringr のラッパーである gregexpr stringi::stri_locate_all (の時点では stringr バージョン 1.0)

library(stringr)
str_locate_all(pattern ='2', "the2quickbrownfoxeswere2tired")

[[1]]
     start end
[1,]     4   4
[2,]    24  24

を使うことができることに注意してください。 stringi

library(stringi)
stri_locate_all(pattern = '2', "the2quickbrownfoxeswere2tired", fixed = TRUE)

ベースの別のオプション R は次のようなものです。

lapply(strsplit(x, ''), function(x) which(x == '2'))

は動作するはずです(文字ベクトルが与えられると x )