Perl 中的替换运算符或‘s’ 运算符用于将字符串文本替换为用户指定的某种模式。
用法: s/text/pattern
返回:失败时为 0 次,成功时为换人次数
示例 1:
#!/usr/bin/perl -w
# String in which text
# is to be replaced
$string = "GeeksforGeeks";
# Use of s operator to replace
# text with pattern
$string =~ s/for/to/;
# Printing the updated string
print "$string\n";
输出:
GeekstoGeeks
示例 2:
#!/usr/bin/perl -w
# String in which text
# is to be replaced
$string = "Hello all!!! Welcome here";
# Use of s operator to replace
# text with pattern
$string =~ s/here/to Geeks/;
# Printing the updated string
print "$string\n";
输出:
Hello all!!! Welcome to Geeks
相关用法
- Perl substr用法及代码示例
- Perl substr()用法及代码示例
- Perl sub用法及代码示例
- Perl scalar用法及代码示例
- Perl seekdir用法及代码示例
- Perl select用法及代码示例
- Perl semctl用法及代码示例
- Perl semget用法及代码示例
- Perl semop用法及代码示例
- Perl send用法及代码示例
- Perl setgrent用法及代码示例
- Perl sethostent用法及代码示例
- Perl setnetent用法及代码示例
- Perl setpriority用法及代码示例
- Perl setprotoent用法及代码示例
- Perl setpwent用法及代码示例
- Perl setservent用法及代码示例
- Perl setsockopt用法及代码示例
- Perl shift用法及代码示例
- Perl shmctl用法及代码示例
- Perl shmget用法及代码示例
- Perl shmread用法及代码示例
- Perl shmwrite用法及代码示例
- Perl sort用法及代码示例
- Perl splice用法及代码示例
注:本文由纯净天空筛选整理自Code_Mech大神的英文原创作品 Perl | substitution Operator。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。