R/bib2df_read.R

Defines functions bib2df_read

#' @importFrom stringr str_replace_all

bib2df_read <- function(file) {
  bib <- readLines(file)
  bib <- str_replace_all(bib, "[^[:graph:]]", " ")
  return(bib)
}

Try the bib2df package in your browser

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

bib2df documentation built on May 23, 2019, 1:03 a.m.