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!

IOS (tm) 2500 Software (C2500-INS-L

Status
Not open for further replies.

sumncguy

IS-IT--Management
May 22, 2006
118
US
IOS (tm) 2500 Software (C2500-INS-L), Version 12.0(14a), RELEASE SOFTWARE (fc1)

if var = "IOS (tm) 2500 Software (C2500-INS-L), Version 12.0(14a), RELEASE SOFTWARE (fc1)"

What is the best way to isolate only 12.0(14a) ?

The shell way would be sumtin line
echo "$var" | sed 's/.*ersion //g s/\, REL.*//g'

Whats the perl equiv for pipe ?
 
You might want to put a little better subjects on in the future..

$var = "IOS (tm) 2500 Software (C2500-INS-L), Version 12.0(14a), RELEASE SOFTWARE (fc1)";


@tmp = split /\s+/, $var;
#Get rid of that trailing comma
chop $tmp[6];
print "$tmp[6]\n";


#or
@tmp = split /\,/, $var;
@tmp2 = split /\s+/, $tmp[1];
print "$tmp2[2]\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:
$var =  "IOS (tm) 2500 Software (C2500-INS-L), Version 12.0(14a), RELEASE SOFTWARE (fc1)";
($version) = $var =~ /(Version([^,])+)/;
print $version;

------------------------------------------
- Kevin, perl coder unexceptional! [wiggle]
 
Regular expressions are EVIL.. I tell you.. EVIL

[upsidedown]

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[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;
 
mwaaahaahaahaa [evil]

split /\,/ <-- is a regexp [wink]

------------------------------------------
- Kevin, perl coder unexceptional! [wiggle]
 
Yeah but they don't count :) I learned split way before I knew what a reg expr was.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[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