[ic] [value-extended mv_searchspec]

Ed LaFrance edl@newmediaems.com
Tue, 17 Apr 2001 09:31:00 -0700


At 10:25 AM 04/17/2001 -0400, you wrote:
>Im sure this is simple but I can't figure it out.
>I need to take [value-extended mv_searchspec] on the results page and 
>remove all occurances of "Yes"
>
>I've tried about 20 different variants of code, but have to admin I have 
>no idea what i'm doing
>
>just need to take the tag and s/yes//gi it.
>
>Thanks

Here's a starting point - not tested, but my belief is that it will perform 
the substitution on the contents of the mv_searchspec array.  You should 
then see the alteration(s) with the [value-extended tag].

[calc]
         my $ref = $Values->{mv_searchspec};
         foreach (@$ref) {
                 s/yes//gi;
         }
[/calc]

- Ed L.


===============================================================
**** Virtual Hosting w/private IC Installation, $65/month! ****
---------------------------------------------------------------
New Media E.M.S.               Software Solutions for Business
463 Main St., Suite D          eCommerce | Consulting | Hosting
Placerville, CA  95667         edl@newmediaems.com
(530) 622-9421                 http://www.newmediaems.com
(866) 519-4680 Toll-Free       (530) 622-9426 Fax
===============================================================