5

I have this string:

myStr <- "I am very beautiful btw"
str <- c("very","beauti","bt")

Now I want to check whether myStr includes all strings in str, how can I do this in R? For example above it should be TRUE. Many Thanks

thelatemail
  • 91,185
  • 12
  • 128
  • 188
Mohammad
  • 1,078
  • 2
  • 18
  • 39

2 Answers2

10

Yes, you can use grepl (not grep, actually), but you must run it once for each substring:

> sapply(str, grepl, myStr)
  very beauti     bt 
  TRUE   TRUE   TRUE 

To get only one result if all of them are true, use all:

> all(sapply(str, grepl, myStr))
[1] TRUE

Edit:

In case you have more than one string to check, say:

myStrings <- c("I am very beautiful btw", "I am not beautiful btw")

You then run the sapply code, which will return a matrix with one row for each string in myStrings. Apply all on each row:

> apply(sapply(str, grepl, myStrings), 1, all)
[1]  TRUE FALSE
Molx
  • 6,816
  • 2
  • 31
  • 47
  • thanks for your response @Molx how about if myStr includes more than one string and I want to see which of them include all the strings in str? – Mohammad May 12 '15 at 01:47
  • 1
    Without going to a matrix via `apply`, you could also do: `do.call(mapply, c(all,lapply(str, grepl, myStrings) ))` – thelatemail May 12 '15 at 03:48
5

Using stringr you could do:

str_detect(myStr, str)

Which returns a result for each substring:

#[1] TRUE TRUE TRUE

Or as per @thelatemail suggestion, if you want to know if all of them are true:

all(str_detect(myStr,str))

Which gives:

#[1] TRUE

You could also find the location (start, end) of every character in myStr that matches str

str_locate(myStr, str)

Which gives:

#     start end
#[1,]     6   9
#[2,]    11  16
#[3,]    21  22
Steven Beaupré
  • 21,343
  • 7
  • 57
  • 77
  • If you're going to use `stringr`, use the appropriate function - `all(str_detect(myStr,str))` – thelatemail May 12 '15 at 01:43
  • It also possible to use "any" instead of "all" if we need to have only one TRUE value - any(str_detect(myStr,str)) – Andrii May 22 '18 at 17:51