$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2006-04-06 12:18:46
> I just noticed that I posted the wrong regex.
> My latest regex was:
:-)
> (.)=(?(\")[^\"]*|[\\S]*)
That shouldn't be a valid regex, a similar alternative would be:
(.)=(?(?=\")\"[^\"]*\"|[\\S]*)
John.