Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
change string in MS word
#1
hello,
i would like to change a word in a word document.

from docx import Document
document = Document('/path/word_template.docx')
doc = docx.Document()

VAR1 = input('FIRST_NAME: ')
VAR2 = input('LAST_NAME: ')

for paragraph in document.paragraphs:
    if 'FIRST_NAME' in paragraph.text:
        print paragraph.text
        paragraph.text = VAR1
    elif 'LAST_NAME' in paragraph.text
        print paragraph.text
        paragraph.text = VAR1

doc.save('/path/word_template.docx')
Error:
Traceback (most recent call last): File "test1.py", line 1, in <module> from docx import Document ModuleNotFoundError: No module named 'docx'
how odd.

OS: linux
python 2 et 3 used to no avail
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 492 Jan-22-2024, 06:40 PM
Last Post: Pedroski55
  extract substring from a string before a word !! evilcode1 3 544 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,546 Jun-27-2022, 01:36 AM
Last Post: RolanRoll
  Isolate a word from a long string nicocorico 2 1,535 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,508 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,534 May-24-2021, 08:48 AM
Last Post: bowlofred
  How can I change a string. Mike Ru 3 2,448 Jun-03-2020, 10:55 AM
Last Post: buran
  Python Speech recognition, word by word AceScottie 6 16,011 Apr-12-2020, 09:50 AM
Last Post: vinayakdhage
  Change string into Dict Robin_at_Cantelli 2 2,934 Mar-05-2020, 10:37 AM
Last Post: vishalhule
  filter just with the string word jacklee26 2 2,407 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