Help for this page

Select Code to Download


  1. or download this
    m|\Q$input|o
    
  2. or download this
    my $string = '15+2=17';
    my $input  = '5+2';
    $string =~ m|$input|o;    # Fails
    $string =~ m|\Q$input|o;  # Succeeds