in reply to Making a hash of regexes
Can you show us a code snippet? What are you trying to do the substitution on? The following works, but I think it's not what you are asking for.
#!/usr/bin/perl -w use strict; my %hash = ( foo => 'bar', baz => 'quux' ); my $string = 'foo and baz'; while( my($k,$v) = each %hash ) { $string =~ s/$k/$v/g; } print $string;
What I'm asking is: "what is your substitution target"? Are you trying to simply make substitutions in a string, like I did above, or are you trying to munge hash keys or something strange like that?
Cheers,
Ovid
New address of my CGI Course.
Silence is Evil (feel free to copy and distribute widely - note copyright text)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Making a hash of regexes
by jpfarmer (Pilgrim) on Nov 25, 2002 at 20:34 UTC | |
by BrowserUk (Patriarch) on Nov 25, 2002 at 20:58 UTC |