replace Methode

replace(old_value, new_value)

Ersetzen Sie den Text.

def replace(self, old_value, new_value):
    ...
ParameterTypBeschreibung
old_valuestrDer alte Text.
new_valuestrDer neue Text.

replace(index, count, text)

Ersetzen Sie den Text.

def replace(self, index, count, text):
    ...
ParameterTypBeschreibung
indexintDer Startindex.
countintDie Anzahl der Zeichen.
textstrDer Text.

Siehe auch