当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Perl substitution用法及代码示例


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

相关用法


注:本文由纯净天空筛选整理自Code_Mech大神的英文原创作品 Perl | substitution Operator。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。