R/find_first_xml_opening_tag_line.R

Defines functions find_first_xml_opening_tag_line

Documented in find_first_xml_opening_tag_line

#' Find the line number of the first section's opening tag
#' @param lines the lines of an XML text
#' @param section the name of the XML section
#' @return the line number's index (which is 1 for the first line) if the
#'   opening tag is found, else NA
#' @author Richèl J.C. Bilderbeek
#' @export
find_first_xml_opening_tag_line <- function( # nolint indeed long function name
  lines,
  section
) {
  check_string(section)
  find_first_regex_line(lines, paste0("<", section, ".*>"))
}
ropensci/beautier documentation built on April 2, 2024, 5:01 a.m.