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

y

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

描述 (Description)

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

语法 (Syntax)

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

y/SEARCHLIST/REPLACEMENTLIST/

返回值 (Return Value)

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

例子 (Example)

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

#!/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.