How to Find and Replace Text in a File in Python?
Hey Friends,
In this short tutorial, we will cover a python find and replace in file. This example will help you how to find and replace text in file in python. I explained simply about how to search and replace text in a file using python. I explained simply about python search and replace string in file.
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...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Set and Get Environment Variables in Python?
- Python Generate Random Number Between 0 to 1 Example
- Python Create PDF File from Text Example
- Python Read Text File into List Example
- How to Read Text File Line by Line in Python?
- How to Read a Text File in Python?
- How to Append Text or Lines to a Text File in Python?
- Python Generate Text File from List Example
- Python List Print All Elements Except First Example
- How to Convert List to Lowercase in Python?
- Python Delete Folder and Files Recursively Example
- Python Post Request with Bearer Token Example
- Python POST Request with Parameters Example