转换类似于 Perl 中的替换原则,但并不完全相同,但与替换不同,转换(或音译)不使用正则表达式来搜索替换值。转换运算符为 −tr/SEARCHLIST/REPLACEMENTLIST/cds y/SEARCHLIST/REPLACEMENTLIST/cds转换将 SEARCHLIST 中字符的所有出现替换为 REPLACEMENTLIST 中对应的字符。例如,使用我们在本章中一直使用的字符串 "The cat sat on the mat." −示例 实时演示 #/user/bin/perl $string = 'The cat sat on the mat'; $string =~ tr/a/o/; print "$string";当执行上述程序时,它会产生以下结果 −The cot sot on the mot.标准 Perl…… 阅读更多