当前位置: 首页 > 文档资料 > Perl 入门教程 >

delete

优质
小牛编辑
128浏览
2023-12-01

描述 (Description)

此函数从散列或数组中的指定元素中删除指定的键和关联值。 该操作适用于单个元素或切片。

语法 (Syntax)

以下是此函数的简单语法 -

delete LIST

返回值 (Return Value)

如果密钥不存在,则此函数返回undef,并且与已删除的散列键或数组索引关联的值。

<!--

例子 (Example)

Following is the example code showing its basic usage, it deletes all the values of %HASH and @ARRAY −

When above code is executed, it produces the following result −

-->