Help for this page

Select Code to Download


  1. or download this
    $string =~ s/\Q$token\E/$date/;
    
  2. or download this
    $test_string =~ s/\Q[A-Z]{3}\E([A-Z]{3})/$1/;
    
  3. or download this
    my $token = quotemeta ( '[DATE:%Y-%m-%d]' );
    
  4. or download this
    $string =~ s/$token/$date/;
    
  5. or download this
    my $token = '\[DATE:%Y-%m-%d\]';
    
  6. or download this
    $string =~ s/$token/$date/;