既存のマップからキーを削除するにはどうすればよいですか?
if (exists $sampleMap{1})
{
#Here I want to remove the "1" key from sampleMap
}
既存のマップからキーを削除するにはどうすればよいですか?
if (exists $sampleMap{1})
{
#Here I want to remove the "1" key from sampleMap
}
delete
ハッシュ キーの削除に使用します。
if (exists $sampleMap{1})
{
delete $sampleMap{1}; #Here I want remove the "1" key from sampleMap.
}
詳細については、deleteを参照してください。