转换类似于 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 ... 阅读更多