Python Forum
Need to replace a string with a file (HTML file)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Need to replace a string with a file (HTML file)
#2
the following assumes the actual text you want to replace is "Message"
wrote on the fly, I have not tested this code

import fileinput


with open('C:/01/File_replace/Email_Body.txt','r') as infile:
    replacement_text = infile.read()

with open('C:/01/File_replace/Template_EM.html') as currentfile, 
    open('C:/01/File_replace/Template_EM_New.html','w') as nf:

    for line in currentfile:
        if "Message" in line:
            line.replace("Message", replacement_text)
        nf.write(line)
tester_V likes this post
Reply


Messages In This Thread
RE: Need to replace a string with a file (HTML file) - by Larz60+ - Aug-30-2023, 03:42 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Replace values in Yaml file with value in dictionary PelleH 1 2,169 Feb-11-2025, 09:51 AM
Last Post: alexjordan
  How to write variable in a python file then import it in another python file? tatahuft 4 953 Jan-01-2025, 12:18 AM
Last Post: Skaperen
  How to read a file as binary or hex "string" so that I can do regex search? tatahuft 3 1,151 Dec-19-2024, 11:57 AM
Last Post: snippsat
Question [SOLVED] How to replace characters in a string? Winfried 2 1,049 Sep-04-2024, 01:41 PM
Last Post: Winfried
  JSON File - extract only the data in a nested array for CSV file shwfgd 2 1,085 Aug-26-2024, 10:14 PM
Last Post: shwfgd
  FileNotFoundError: [Errno 2] No such file or directory although the file exists Arnibandyo 0 974 Aug-12-2024, 09:11 AM
Last Post: Arnibandyo
  "[Errno 2] No such file or directory" (.py file) IbrahimBennani 13 6,462 Jun-17-2024, 12:26 AM
Last Post: AdamHensley
  Matching string from a file tester_V 5 1,843 Mar-05-2024, 05:46 AM
Last Post: Danishhafeez
  file open "file not found error" shanoger 8 7,658 Dec-14-2023, 08:03 AM
Last Post: shanoger
  Replace a text/word in docx file using Python Devan 4 21,886 Oct-17-2023, 06:03 PM
Last Post: Devan

Forum Jump:

User Panel Messages

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