Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
change string in MS word
#9
(Sep-19-2021, 01:30 PM)Mr_Blue Wrote: i didn't get something, then.
because when i try to use just python with a command like file.write(line.replace('this', 'that')) i have an error message
Open file as binary(rb) then there is no encoding problems.
You most look at doc or search how replace is done python-docx.
Quick test.
from docx import Document

file = open('Hello world.docx', 'rb')
document = Document(file)
for paragraph in document.paragraphs:
    if 'Hello' in paragraph.text:
        print(paragraph.text) # Hello world
        paragraph.text = paragraph.text.replace("Hello", "Ocean")

document.save('result.docx')
So now in result.docx it will say Ocean world
Reply


Messages In This Thread
change string in MS word - by Mr_Blue - Sep-18-2021, 06:51 PM
RE: change string in MS word - by ndc85430 - Sep-18-2021, 07:34 PM
RE: change string in MS word - by bowlofred - Sep-18-2021, 09:13 PM
RE: change string in MS word - by snippsat - Sep-18-2021, 11:15 PM
RE: change string in MS word - by bowlofred - Sep-19-2021, 12:17 AM
RE: change string in MS word - by Mr_Blue - Sep-19-2021, 08:53 AM
RE: change string in MS word - by snippsat - Sep-19-2021, 09:42 AM
RE: change string in MS word - by Mr_Blue - Sep-19-2021, 01:30 PM
RE: change string in MS word - by snippsat - Sep-19-2021, 02:13 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Retrieve word from string knob 4 502 Jan-22-2024, 06:40 PM
Last Post: Pedroski55
  extract substring from a string before a word !! evilcode1 3 550 Nov-08-2023, 12:18 AM
Last Post: evilcode1
  find some word in text list file and a bit change to them RolanRoll 3 1,549 Jun-27-2022, 01:36 AM
Last Post: RolanRoll
  Isolate a word from a long string nicocorico 2 1,545 Feb-25-2022, 01:12 PM
Last Post: nicocorico
Question Problem: Check if a list contains a word and then continue with the next word Mangono 2 2,518 Aug-12-2021, 04:25 PM
Last Post: palladium
  Question about change hex string to integer sting in the list (python 2.7) lzfneu 1 2,543 May-24-2021, 08:48 AM
Last Post: bowlofred
  How can I change a string. Mike Ru 3 2,457 Jun-03-2020, 10:55 AM
Last Post: buran
  Python Speech recognition, word by word AceScottie 6 16,028 Apr-12-2020, 09:50 AM
Last Post: vinayakdhage
  Change string into Dict Robin_at_Cantelli 2 2,939 Mar-05-2020, 10:37 AM
Last Post: vishalhule
  filter just with the string word jacklee26 2 2,415 Feb-03-2020, 03:25 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

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