replace method

replace(self, old_string, new_string)

Replaces all cells’ text with a new string.


def replace(self, old_string, new_string):
    ...
ParameterTypeDescription
old_stringstrOld string value.
new_stringstrNew string value.

See Also