Help for this page

Select Code to Download


  1. or download this
    my $str = "Hello my name is Kevin";
    my $regex = $form->query(...);
    #Value of regex : "/Hello\smy\name\sis\s(\w.*)/"
    
    $str =~ $regex;
    
  2. or download this
    $str =~ /$regex/; #where omitting / in $regex
    eval($str =~ /$regex/);
    eval($str =~ $regex);