Rでstringrのstr_view
を使用して、 "y"で始まるすべての単語と "x"で終わるすべての単語を検索します。私はCorporaによって生成された単語のリストを持っていますが、コードを起動するたびに空白のビューが返されます。str_viewをRの単語リストで使用する
Common_words<-corpora("words/common")
#start with y
start_with_y <- str_view(Common_words, "^[y]", match = TRUE)
start_with_y
#finish with x
str_view(Common_words, "$[x]", match = TRUE)
また、私は今のところ唯一の3文字の長さである言葉、ない アイデアを見つけるしたいと思います。
てください[MCVE(最小の完全な検証例)](http://stackoverflow.com/help/mcve) 。 –
申し訳ありませんが、検証可能な完全な例は何ですか? – Rfanatic
そのリンクはそれを説明しますか? :) 'str_view(s、 '^ y(。)* x $')'についてはどうですか? – Gopala