R/markers.R

Defines functions detect_with_markers

detect_with_markers <- function(x, marker_open, marker_close) {

  !is.na(x) & startsWith(x, marker_open) & endsWith(x, marker_close)

}

Try the xlcutter package in your browser

Any scripts or data that you put into this service are public.

xlcutter documentation built on Oct. 23, 2023, 1:08 a.m.