Help for this page

Select Code to Download


  1. or download this
    my $page2 = "Account number 12345678";
    
    if ( my ($acct) = $page2 =~ /Account number (.*)/ ) {
       print "acct = $acct\n";
    }