I currently have this code but I'm sure there's a way to do it in a one line match. Regex to pull both out=/(.*):.*\/(.*):/
If the second IP address is 0.0.0.0 return the first IP else keep the second
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
![[noevil] [noevil] [noevil]](/data/assets/smilies/noevil.gif)
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
If the second IP address is 0.0.0.0 return the first IP else keep the second
Code:
$test = '1.1.1.1:1234/0.0.0.0:4321';
($test2) = $test =~ /.*\/(.*):/;
if ($test2 eq '0.0.0.0') {
($test2) = $test =~ /(.*):.*\//;
}
print "$test2\n";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
![[noevil] [noevil] [noevil]](/data/assets/smilies/noevil.gif)
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;