#' Title
#'
#' @param r
#'
#' @return
#' @export
#'
#' @examples
#' @importFrom stringr str_extract_all str_trim
#' @importFrom dplyr "%>%"
get_bid <- function(r) {
suppressWarnings(r %>%
stringr::str_extract_all("\\d{9}(?=\\/)") %>%
unlist() %>%
stringr::str_trim())
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.