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!

Lil regex help.. 1

Status
Not open for further replies.

travs69

MIS
Dec 21, 2006
1,431
US
my $data = 'AS5300 chassis, Hw Serial#: 27539697, Hw Revision: A.32';

if ($data =~ /Serial#: (.*?), Hw Revision: (.*?)/i) {
print "$1\n";
print "$2\n";
}

Not working as expected

output is only.
27539697

Thanks in advance as always..!!

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[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;
 
The second group is doing what you told it, to match as little as possible, in this case nothing. Just remove the '?' quantifier:

Code:
my $data = 'AS5300 chassis, Hw Serial#: 27539697, Hw Revision: A.32';

if ($data =~ /Serial#: (.*?), Hw Revision: (.*)/i) {
    print "$1\n";
    print "$2\n";
}

------------------------------------------
- Kevin, perl coder unexceptional! [wiggle]
 
Thanks Kevin.. :)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[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;
 
You're welcome

------------------------------------------
- Kevin, perl coder unexceptional! [wiggle]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top