R/find_first_regex_line.R

Defines functions find_first_regex_line

Documented in find_first_regex_line

#' Find the first line that satisfies a regex
#' @param lines lines of text
#' @param regex the regex as text
#' @return index of the line
#' @author Richèl J.C. Bilderbeek
#' @export
find_first_regex_line <- function(lines, regex) {
  for (i in seq_along(lines)) {
    match <- stringr::str_extract(
      string = lines[i],
      pattern = regex
    )
    if (!is_one_na(match)) return(i)
  }
  NA
}
ropensci/beautier documentation built on April 2, 2024, 5:01 a.m.