Python Forum
Replace String in multiple text-files [SOLVED]
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Replace String in multiple text-files [SOLVED]
#1
Hello everybody,

In a previous post I got help to find a string in a text-file, replace it with an increasing number and save it:

import re

target = "String"

def str_counter(match_object):
    str_counter.count += 1
    return str(str_counter.count)
str_counter.count = 0

with open('input.txt', 'r') as file :
  filedata = file.read()

filedata = re.sub(re.escape(target), str_counter, filedata)

a_file = open("input.txt", "w")
text = filedata
print(text, file=a_file)
a_file.close()
Now I would like to expand this and do this for every txt-file inside a folder. Is there a way to go through the whole directory, open every file, replace the string with an increasing counter and then save it to the same file? With my posted code I am able to do this for the one specified file but I'd like to do this for every text-file.
Reply
#2
Modify your code above to become a function. Have the function take the name of the file and operate on it.

Then use glob.glob or Path.iterdir() (or os.scandir) to get all the files in a directory that you want. Loop over them and pass the filenames or filepaths to your function.
Reply
#3
(Aug-06-2021, 11:06 PM)bowlofred Wrote: Modify your code above to become a function. Have the function take the name of the file and operate on it.

Then use glob.glob or Path.iterdir() (or os.scandir) to get all the files in a directory that you want. Loop over them and pass the filenames or filepaths to your function.

Sorry to be so annoying but how do i do this exactly?
I'm pretty new to python
Reply
#4
As bowlofred already wrote, make a function and then call it for every txt file

import os

folder_path = "/path/to/folder/" # your path
            
for root, dirs, files in os.walk(folder_path, topdown = False):
   for name in files:
      if name.endswith(".txt"):
        file_name = os.path.join(root, name)
        print(file_name)
        #your_function(file_name) # call your function
Reply
#5
(Aug-07-2021, 11:45 AM)Axel_Erfurt Wrote: As bowlofred already wrote, make a function and then call it for every txt file

import os

folder_path = "/path/to/folder/" # your path
            
for root, dirs, files in os.walk(folder_path, topdown = False):
   for name in files:
      if name.endswith(".txt"):
        file_name = os.path.join(root, name)
        print(file_name)
        #your_function(file_name) # call your function

I tried to do it like this:

#!/usr/bin/env python3

import os
import re

folder_path = "/home/pi/Workspace/Case_02/" # your path

for root, dirs, files in os.walk(folder_path, topdown = False):
   for name in files:
      if name.endswith(".txt"):
        file_name = os.path.join(root, name)

target = "Format"

def str_counter(match_object):
    str_counter.count += 1
    return str(str_counter.count)
str_counter.count = 0

with open(file_name, 'r') as file :
  filedata = file.read()

filedata = re.sub(re.escape(target), str_counter, filedata)

with open(file_name, 'w') as file:
    file.write(filedata)
I set an example with three different files (Out_01.txt, Out_02.txt, Out_03.txt) but the changes to my file were only written to Out_03.txt.

Edit: I just needed to set the right amount of spaces per indentation level.
Reply
#6
You did not create a function and your indentations are disastrous, try this

import os
import re
 
folder_path = "/home/pi/Workspace/Case_02/" # your path
target = "Format"

def str_counter(match_object):
    str_counter.count += 1
    return str(str_counter.count)
str_counter.count = 0

def  do_it(file_name):
    with open(file_name, 'r') as file :
        filedata = file.read()
        print(filedata)
     
        filedata = re.sub(re.escape(target), str_counter, filedata)
    
        print(filedata)
     
        with open(file_name, 'w') as file:
            file.write(filedata)
            file.close()
        
for name in os.listdir(folder_path):
    if name.endswith(".txt"):
        file_name = os.path.join(folder_path, name)
        do_it(file_name)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  replace text in a txt cartonics 19 2,075 Jan-30-2024, 06:58 AM
Last Post: Athi
  python convert multiple files to multiple lists MCL169 6 1,436 Nov-25-2023, 05:31 AM
Last Post: Iqratech
  Replace a text/word in docx file using Python Devan 4 2,855 Oct-17-2023, 06:03 PM
Last Post: Devan
  Need to replace a string with a file (HTML file) tester_V 1 699 Aug-30-2023, 03:42 AM
Last Post: Larz60+
Sad How to split a String from Text Input into 40 char chunks? lastyle 7 1,054 Aug-01-2023, 09:36 AM
Last Post: Pedroski55
  splitting file into multiple files by searching for string AlphaInc 2 816 Jul-01-2023, 10:35 PM
Last Post: Pedroski55
Question [solved] compressing files with python. SpongeB0B 1 609 May-26-2023, 03:33 PM
Last Post: SpongeB0B
  Replace string in a nested Dictianory. SpongeB0B 2 1,147 Mar-24-2023, 05:09 PM
Last Post: SpongeB0B
  Help replacing word in Mutiple files. (SOLVED) mm309d 0 796 Mar-21-2023, 03:43 AM
Last Post: mm309d
  Merging multiple csv files with same X,Y,Z in each Auz_Pete 3 1,088 Feb-21-2023, 04:21 AM
Last Post: Auz_Pete

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020