s/PATTERN/REPLACE/ |
不是一個函數。這是正則表達式替換操作符。基於正則表達式中指定的模式,通過更換數據被替換。就像m//,分隔符定義下列s的第一個字符。
0 - 失敗
成功的替代子串的數量
#!/usr/bin/perl -w $string = "This is Test"; # this will replcase Test with Best. $string =~ s/Test/Best/; print "$string\n";
這將產生以下結果:
This is Best