Help for this page

Select Code to Download


  1. or download this
    $string = '--*test--';
    if ( $string =~ /\btest\b/ ) { print "$string matched.\n" }
    
  2. or download this
    my $string = "--*test--";
    if ( $string =~ /\W+test\W+/ ) .....