Help for this page

Select Code to Download


  1. or download this
    $exp->expect($timeout,
            [ qr/.*$card,$sim.*Your Number is \+([0-9]+).*/,
    ...
                   print "Got gsm_number=$gsm_number_gotten for card=$card
    +  sim=$sim\n\n";
                }
            ]);
    
  2. or download this
    my $number_string = 'Your number is \+([0-9]+)';
    
  3. or download this
    $exp->expect($timeout,
            [ qr/.*$card,$sim.*$number_string.*/,
    ...
                   print "Got gsm_number=$gsm_number_gotten for card=$card
    +  sim=$sim\n\n";
                }
            ]);