hello all perl guru's
in a regular expression how do I execute subroutines?
eg.
-------------------
$_ =~ s/replaceme (.*)/hello($1);/ig;
sub hello {
my ($test) = @_;
...
}
-----------------
I am using an ActiveState 5.8 something, perl distro.
thanks in advance for all help,
-Jeremy A.