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_function_references.htm
广告