Help for this page

Select Code to Download


  1. or download this
    if( defined $ARGV[2] ) {
        # Handle the search string.
    ...
        # Perform whatever default preparations are necessary in
        # the absence of a defined search string.
    }
    
  2. or download this
    $ARGV[2] //= 'Default value';
    
  3. or download this
    my $pattern = $ARGV[2] // 'Default value';