find and replace string python code example
Example 1: python replace string
text = "Apples taste Good."
print(text.replace('Apples', 'Bananas'))
Bananas taste Good. <---- Output
print("Have a Bad Day!".replace("Bad","Good"))
Have a Good Day! <----- Output
print("Mom is happy!".replace("Mom","Dad").replace("happy","angry"))
Dad is angry! <----- Output
Example 2: replace number with string python
x = re.sub(r"\d+", "NUMB", str(x))
Example 3: python replace "\" for "/"
my_string = r'\\ServerA\DriveB\5.FolderC\A.TXT'
my_string = my_string.replace('\\', '/')