Help for this page

Select Code to Download


  1. or download this
       my $variable = '12345(checkthis)';
       $variable =~ /^(\d*)/;
       my $start_digits = $1;
    
  2. or download this
       my $variable = '12345(checkthis)';
       my ($start_digits) = $variable =~ /^(\d*)/;