$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2007-12-02 08:58:53
John Kiopela wrote:
>> Can somebody please help me with this regular expression? I'm trying
>> to find out how I can type "any character except the string 'END
>> FINANCIAL INFORMATION'", but without succes so far.
You could use forward lookahead for this:
"(?:(?!END FINANCIAL INFORMATION).)+"
which matches any sequence of characters not containing the string "END
FINANCIAL INFORMATION".
HTH, John.