I'm looking to change the actual entry in a .bib file, NOT the bibliography.
For instance I have
@{key1, author = {Last1, First and Last2, Second ...}
Instead, I want a .bib file that is written as,
@{key1, author = {Last1, F. and Last2, S. ...}
I don't want to go the whole regular expression approach. Is there a program that simply allows you to export the .bib file that way?
.bibfile with 2 or 3 entries exactly as you format them. The fullbibgrammar is really complicated and it's impossible to do conversions in it using regular expressions since the language is not regular, but context-free. However, I'm sure that you use only small parts of the grammar and then it should be quite easy to do this conversion by a REGEX. – tohecz Apr 12 '12 at 9:19