I'm trying to determine if a string is a subset of another string. For example:
chars <- "test" value <- "es" I want to return TRUETRUE if "value""value" appears as part of the string "chars""chars". In the following scenario, I would want to return false:
chars <- "test" value <- "et"