Help for this page

Select Code to Download


  1. or download this
    foreach (@whatever) {
        if (/^does this match$/) {
            do something;
        }
    }
    
  2. or download this
    if (/$hash{$whatever}/) {
        do something;
    }
    
  3. or download this
    %SampleHash (
        'whatever' => 'whatever',
        'whoever' => 'whoever',
    )