ItSolutionStuff.com

Python Search and Replace String in txt File Example

By Hardik Savani • October 30, 2023
Python

Hi Dev,

Now, let's see an example of python search and replace in txt file. We will look at an example of python search and replace in text file. If you have a question about python search and replace line in text file then I will give a simple example with a solution. you can see find and replace in text file python.

Here, i will give you a very simple example to search and replace string in file using python script. we will use open() and replace() function to find string and replace in file using python 3. so, let's see the simple example:

Example:

Here, we will create an "example.txt" file as like below:

example.txt

Hi
This is example.com
This is example.com

Now, we will create main.py file and find string from that file as like the below code:

main.py

findString = "example.com"
replaceString = "itsolutionstuff.com"
  
# Find Text and Replace Word
with open('example.txt', 'r') as f:
    data = f.read()
    data = data.replace(findString, replaceString)
  
with open('example.txt', 'w') as f:
    f.write(data)
    
print("Text replaced")

Output:

example.txt

Hi
This is itsolutionstuff.com
This is itsolutionstuff.com

I hope it can help you...

Tags: Python
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Python Read Text File into List Example

Read Now →

How to Read Text File Line by Line in Python?

Read Now →

How to Read a Text File in Python?

Read Now →

How to Append Text or Lines to a Text File in Python?

Read Now →

Python Generate Text File from List Example

Read Now →

Python Create Text File If Not Exists Example

Read Now →

Python Create Text File in Specific Directory Example

Read Now →

How to Create Multiline Text File in Python?

Read Now →

Python Delete Directory if Exists Example

Read Now →

Python Delete File if Exists Example

Read Now →

Python Copy File From one Directory to Another Example

Read Now →

Python List All Dates Between Two Dates Example

Read Now →

How to Add Months to Date in Python?

Read Now →