Help for this page

Select Code to Download


  1. or download this
    my($version, $int) = /<xml\sversion="((\d+)\.?\d*)"/;
    
  2. or download this
    my($version) = /<xml\sversion="(\d+\.?\d*)"/;
    
  3. or download this
    my($version) = /<xml\sversion="(\d+)\.?\d*"/;
    
  4. or download this
    #!/usr/bin/perl -w
    foreach  (
    ...
            print "No match in $_\n";
        }
    }
    
  5. or download this
    Match '24.0' in <xml version= "24.0" IP="1.1.2.3" baseVersion="beta_3"
    + lastUpdate="22-Apr-06" >
    Match '24.0' in <xml IP="1.1.2.3" baseVersion="beta_3" version= "24.0"
    + lastUpdate="22-Apr-06" >
    Match '24.0' in <xml IP='1.1.2.3' baseVersion="beta_3" lastUpdate="22-
    +Apr-06" version= '24.0'>