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


Python string replace()用法及代碼示例


replace()是Python編程語言中的內置函數,它返回字符串的副本,在該字符串中,所有出現的子字符串都將替換為另一個子字符串。

用法:

string.replace(old, new, count)

參數:


  • old -您要替換的舊子字符串。
    new -新的子字符串,它將替換舊的子字符串。
  • count -您要用新的子字符串替換舊的子字符串的次數。 (可選的 )

返回值:
它返回該字符串的副本,其中所有出現的子字符串都被另一個子字符串替換。

下麵是演示replace()的代碼:

# Python3 program to demonstrate the  
# use of replace() method   
  
string = "geeks for geeks geeks geeks geeks" 
   
# Prints the string by replacing geeks by Geeks  
print(string.replace("geeks", "Geeks"))  
  
# Prints the string by replacing only 3 occurrence of Geeks   
print(string.replace("geeks", "GeeksforGeeks", 3))

輸出:

Geeks for Geeks Geeks Geeks Geeks
GeeksforGeeks for GeeksforGeeks GeeksforGeeks geeks geeks


相關用法


注:本文由純淨天空篩選整理自Striver大神的英文原創作品 Python String | replace()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。