1010 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			1010 B
		
	
	
	
	
	
	
	
title, localeTitle
| title | localeTitle | 
|---|---|
| String Replace Method | Método de Substituição de Cadeias | 
Método de Substituição de Cadeias
O str.replace(old, new, max) é usado para substituir a subseqüência old pela string new por um total max vezes. Este método retorna uma nova cópia da string com a substituição. A string original str permanece inalterada.
Exemplos
- Substitua todas as ocorrências de "is"por"WAS"
string = "This is nice. This is good." 
 newString = string.replace("is","WAS") 
 print(newString) 
Saída
ThWAS WAS nice. ThWAS WAS good. 
- Substitua as duas primeiras ocorrências de "is"por"WAS"
string = "This is nice. This is good." 
 newString = string.replace("is","WAS", 2) 
 print(newString) 
Saída
ThWAS WAS nice. This is good. 
Mais Informações:
Leia mais sobre a substituição de strings nos documentos do Python