描述
這不是一個函數。這是音譯運算符;它將 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。