當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。