Re: regexp for "anything except the combination .} "

2007-05-27 Thread Michael Marsh
On 5/27/07, Russell L. Harris <[EMAIL PROTECTED]> wrote: I am trying to write a regular expression which searches for the following string: \footnote{x.} where is any character, including newline. I wish to capture the entire string in a match variable. Thus far, I have written:

regexp for "anything except the combination .} "

2007-05-27 Thread Russell L. Harris
I am trying to write a regular expression which searches for the following string: \footnote{x.} where is any character, including newline. I wish to capture the entire string in a match variable. Thus far, I have written: /(\\footnote(.*([^\.][^}]))/s in which I intended the