Help for this page

Select Code to Download


  1. or download this
    my $string = qw(ITEM-####);
    $string =~ s/#/\d/g;
    
  2. or download this
    my $string = qw(ITEM-####);
    $string =~ s/#/\\d/g;
    
  3. or download this
    my $esc = qw(\d);
    my $string = qw(ITEM-####);
    $string =~ s/#/$esc/g;