Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Regex match question 1

Status
Not open for further replies.

travs69

MIS
Dec 21, 2006
1,431
US
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
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]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
Code:
$ perl
$test = '1.1.1.1:1234/0.0.0.0:4321';
my (@re) = $test =~ /^(.*):.*\/(.*):.*$/;
my $test2 = $re[1] eq '0.0.0.0' ? $re[0] : $re[1];
print "$test2\n";
__END__
1.1.1.1

This at least gets it down to only 2 lines and only 1 regexp being run.

*tries harder*

Code:
$ perl
$test = '1.1.1.1:1234/0.0.0.0:4321';
$test2 = ($test =~ m/^(.*):.*\/(.*):.*$/ && $2 eq '0.0.0.0' ? $1 : $2);
print "$test2\n";

Here's a one-liner. :)

Kirsle.net | My personal homepage
Code:
perl -e '$|=$i=1;print" oo\n<|>\n_|_";x:sleep$|;print"\b",$i++%2?"/":"_";goto x;'
 
Thanks..

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top