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.