$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2005-01-10 08:01:33
> I want to do a search for a regular expression for '$':Matches the end of
> the string.
> e.g.: 'script$' should select vbscript as well as javascript.
> How can I do this?
I'm not entirely clear on what you are trying to do, but how about:
(?:vbscript|javascript)$
John.