描述
这不是一个函数。这是音译运算符;它将 SEARCHLIST 中所有出现的字符替换为 REPLACEMENTLIST 中的字符。
用法
以下是此函数的简单语法 âˆ'
tr/SEARCHLIST/REPLACEMENTLIST/
返回值
此函数返回替换或删除的字符数。
示例
以下是显示其基本用法的示例代码 -
#!/usr/bin/perl -w
$string = 'the cat sat on the mat.';
$string =~ tr/a-z/b/d;
print "$string\n";
执行上述代码时,会产生以下结果。这里选项 d 用于删除匹配的字符。
b b b.
相关用法
- Perl tell()用法及代码示例
- Perl tie用法及代码示例
- Perl telldir用法及代码示例
- Perl times用法及代码示例
- Perl time用法及代码示例
- Perl tell用法及代码示例
- Perl sin()用法及代码示例
- Perl abs()用法及代码示例
- Perl kill用法及代码示例
- Perl chop()用法及代码示例
- Perl wantarray用法及代码示例
- Perl gmtime用法及代码示例
- Perl exists()用法及代码示例
- Perl split用法及代码示例
- Perl localtime用法及代码示例
- Perl delete()用法及代码示例
- Perl undef用法及代码示例
注:本文由纯净天空筛选整理自 Perl tr Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。