I defined a @STRING in my .bib file as follows:
@STRING{mytext = {Last accessed: }}
This is an entry in the bibliography.
@ARTICLE{knuth:1974,
author = {Knuth, Donald E.},
title = {{C}omputer {P}rogramming as an {A}rt},
journal = {Communications of the ACM},
year = {1974},
volume = {17},
pages = {667--673},
number = {12},
month = {December },
address = {New York, NY, USA},
publisher = {ACM Press},
note = {Last accessed: 09/20/12}
}
I want to use mytext as a template so I can easily change it. The note field however contains more then the template text.
How can I use the mytext variable in the note field?

note = mytext? – Kurt Sep 20 '12 at 0:30