logo

Metodo Python String rstrip()

Pitone rstrip() Il metodo rimuove tutti i caratteri finali dalla stringa. Significa che rimuove tutti i caratteri specificati dal lato destro della stringa. Se non specifichiamo il parametro, rimuove tutti gli spazi bianchi dalla stringa. Questo metodo restituisce un valore stringa.

Firma

 rstrip([chars]) 

Parametri

caratteri : carattere da rimuovere dalla stringa.

Ritorno

Restituisce stringa.

Vediamo alcuni esempi del metodo rstrip() per comprenderne le funzionalità.

Metodo Python String rstrip() Esempio 1

Un semplice esempio, non accetta alcun parametro. Rimuove tutti gli spazi bianchi finali dalla stringa.

 # Python rstrip() method example # Variable declaration str = 'Java and C# ' # Calling function str2 = str.rstrip() # Displaying result print('Old string: ',str) print('New String: ',str2) 

Produzione:

if istruzione java
 Old string: Java and C# New String: Java and C# 

Metodo Python String rstrip() Esempio 2

i caratteri stringa vengono rimossi in base al parametro del tipo char. Restituisce una stringa dopo aver rimosso il carattere.

 # Python rstrip() method example # Variable declaration str = 'Java and C#' # Calling function str2 = str.rstrip('#') # Displaying result print('Old string: ',str) print('New String: ',str2) 

Produzione:

 Old string: Java and C# New String: Java and C 

Metodo Python String rstrip() Esempio 3

È abbastanza semplice sapere quanti caratteri vengono rimossi ottenendo la lunghezza della stringa. Vedi l'esempio. La lunghezza della stringa viene visualizzata insieme al valore della stringa.

 # Python rstrip() method example # Variable declaration str = 'Java and C#' # Calling function str2 = str.rstrip('#') # Displaying result print('Old string: ',str, len(str)) print('New String: ',str2, len(str2)) 

Produzione:

 Old string: Java and C# 11 New String: Java and C 10