- or download this
if (/$hash{$whatever}/) {
do something;
}
- or download this
%SampleHash (
'whatever' => 'whatever',
'whoever' => 'whoever',
)
- or download this
if($SampleHash{$string}){ ... }
- or download this
foreach(LIST) {
$checked{$_}++;
}
if($checked{$string}) { ... }
- or download this
@checked{LIST} = ();
if(exists $check{$string}) { ... }