#' Remove matched patterns in rows
#'
#'
#' @param x dataframe
#' @param rows Rows to look for pattern.
#' @param pattern Pattern to look for.
#'
#' @export
#'
#' @example inst/ex/ex-str_remove_row.R
str_remove_row <- function(x, rows, pattern) {
str_replace_row(x, rows, pattern, "")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.