- or download this
sub yoursub
{
...
}
yoursub([2..7], 'NETPACKET', 'Network', \&transformNetpacketSub);
- or download this
sub yoursub
{
...
}
yoursub(-range => [2..7], -firstre=>'NETPACKET', -secondre=>'Network',
+ ->transformsub=>\&transformNetpacketSub);
- or download this
sub transformNetpacketSub
{
...
# do anything with string
return $str;
}