Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定の文字列を含む文字配列の要素を抽出したいと考えています。例えば:
x <- c('aa', 'ab', 'ac', 'bb', 'bc')
xand 'a'(通常、これは文字列である可能性があります) を指定すると、 が返されるような関数が必要です'aa', 'ab', 'ac'。%in%、match、などの組み合わせを試しましたがwhich、機能させることができませんでした。何か案が?
x
'a'
'aa', 'ab', 'ac'
%in%
match
which
使用するだけgrepです:
grep
grep('a', x, value=TRUE) [1] "aa" "ab" "ac"