Perl y 函数

描述

此功能与 tr/// 运算符相同; 将 SEARCHLIST 中的所有字符转换为 REPLACEMENTLIST 中的相应字符。 它进行逐个字符的转换


语法

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

y/SEARCHLIST/REPLACEMENTLIST/

返回值

该函数返回修改的字符数。


示例

以下是显示其基本用法的示例代码 −

#!/usr/bin/perl -w

$string = 'the cat sat on the mat.';

# This will generate a upper case string
$string =~ y/a-z/A-Z/;

print "$string\n";

执行上述代码时,会产生以下结果 −

THE CAT SAT ON THE MAT.

❮ Perl 函数参考