Help for this page

Select Code to Download


  1. or download this
    $match = "chiapet";  # default value
    if ($string =~ /foobar(...)/) {  # probably want to capture something 
    +here
        $match = $1;
    }
    
  2. or download this
    $match = ($string =~ /foobar(...)/) ? $1 : "chiapet";