Help for this page

Select Code to Download


  1. or download this
    my $string = '  5954 Bluebonnet Sun Catcher Horizontal Oval 6"X9"     
    +1 @ $   39.95 =  $      39.95 ';
    my $string2 = '5422  Texas Home Luggage Tag                 6 @ $    3
    +.95 = $      23.70';
    ...
       ([\d,\.]+)      # capture digit comma period
       /ix             # end regex
       ) ;
    
  2. or download this
    my $prodID = $1;
    my $prodDescr = $2;