Nothing
#' Find word within a sentence
#' @param x A character vector of uppercase sentences.
#' @param tbl A table of words. Long vectors are not permitted.
#'
#' @return An integer vector the same length as \code{x}, where the
#' \code{i}-th entry
#' is the integer position of the first word in \code{tbl}
#' detected in \code{x[i]}. Non-matches return \code{NA}. Words
#' are strings of uppercase separated by spaces.
#'
#' @export
match_word <- function(x, tbl) {
stopifnot(is.character(x), is.character(tbl))
.Call("Cmatch_word", x, tbl, PACKAGE = packageName())
}
which_first_strstr <- function(x, p) {
.Call("C_which_first_strstr", x, p, PACKAGE = packageName())
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.