Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    $x =~ tr/ //d;
    print "Matched: >$1<\n" if $x =~ /(\Q$y\E)/i;
    
  2. or download this
    Matched: >Myname<