hi,
I am using the following to switch data from client2 to client1 and blanking client2.
Just wondered if there was a better way...
cheers, 1DMF
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Google Rank Extractor -> Perl beta with FusionCharts
I am using the following to switch data from client2 to client1 and blanking client2.
Just wondered if there was a better way...
Code:
foreach my $key1 (@{$self->{C1_DATA}}){
my $key2 = $key1;
$key2 =~ s/1/2/g;
$self->{CASE}{$key1} = $self->{CASE}{$key2};
$self->{CASE}{$key2} = undef;
}
cheers, 1DMF
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Google Rank Extractor -> Perl beta with FusionCharts