grepl("instance|percentage", labelTest$Text)
will return true if any one of instance
or percentage
is present.
How will i get true only when both the terms are present.
grepl("instance|percentage", labelTest$Text)
will return true if any one of instance
or percentage
is present.
How will i get true only when both the terms are present.