内容

名称

Text::Abbrev - abbrev - 从列表中创建缩写表

语法

use Text::Abbrev;
abbrev $hashref, LIST

描述

将 LIST 中每个元素的所有明确截断存储为 $hashref 引用的关联数组中的键。值是原始列表元素。

示例

$hashref = abbrev qw(list edit send abort gripe);

%hash = abbrev qw(list edit send abort gripe);

abbrev $hashref, qw(list edit send abort gripe);

abbrev(*hash, qw(list edit send abort gripe));