Help for this page

Select Code to Download


  1. or download this
    use strict;
    my $line = "this is a test=234567 line";
    my ($value) = $line =~ /.*test=(\d+)/;
    print $value;
    
  2. or download this
    234567