tr/SEARCHLIST/REPLACEMENTLIST/ |
这是不是一个函数。这是意译运算符; 用REPLACEMENTLIST字符替换在SEARCHLIST所有出现的字符。
替换或删除的字符数。
#!/usr/bin/perl -w #by www.gitbook.net $string = 'the cat sat on the mat.'; $string =~ tr/a-z/b/d; print "$string\n";
这将产生以下结果:选项D是用来删除匹配的字符
b b b.