I have .bib file (downloaded from web of science) and I want to import it into R, replace all instances of "in light of" with "CONSIDERING", and export it as a .bib file. I have not been able to find a function that can write my data back to a .bib file. WriteBib does not work because refs is a "pairlist" object, not "bibentry". Any advice on how to export a .bib file that can be imported into Mendeley? thanks for your help!
here is the code:
library(bibtex)
library(RefManageR)
refs = do_read_bib("/Users/CarrieAnn/Downloads/savedrecs (1).bib", encoding = "unknown", srcfile)
for (i in 1:length(refs)) {
refs[[i]] = gsub("in light of", "CONSIDERING", refs[[i]])
}
I think your easiest option is to treat the .bib file like a normal text file. Try this:
Contents of
example.bib
:Output of
new_example.bib
:A bit of explanation:
BibEntry
objects have non-standard internals and are hard to work with, outside of the functionality provided in theRefManageR
package. As soon as youunclass
or reduce aBibEntry
object to a list, it becomes difficult to put back into abib
format, due to the object's required mix of fields and attributes. (And to make matters worse,bibtex
andRefManageR
don't have exactly the same internal structure, so it's hard to convert from one context to the other.)