Python Forum
Extract Strings From Text File - Out Put Results to Individual Files
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Extract Strings From Text File - Out Put Results to Individual Files
#5
Hi,

I tried to follow the suggestions, so far, Im at here


import os

Words=['Pear','Cherry']
	
with open('Phrases.txt','r') as inFile:
	    
	 text = inFile.read()
	 sentences = text.split(".")
	
	 for s in Words:
	  with open("%s.txt" % s, "w") as f:
	    for sentence in sentences:
	        if (any(word in sentence for word in Words)):  
	          f.write(sentence + '\n')
I do get 2 files - but not the right ouptut
Due to my errors, of not looping file correctly for the words.
Reply


Messages In This Thread
RE: Extract Strings From Text File - Out Put Results to Individual Files - by dj99 - Jun-27-2018, 05:04 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  JSON File - extract only the data in a nested array for CSV file shwfgd 2 1,207 Aug-26-2024, 10:14 PM
Last Post: shwfgd
  Extract and rename a file from an Archive tester_V 4 4,167 Jul-08-2024, 07:54 AM
Last Post: tester_V
  Extract text from PDF goryee 2 9,546 Jul-08-2024, 06:35 AM
Last Post: Pedroski55
  Is it possible to extract 1 or 2 bits of data from MS project files? cubangt 8 4,139 Feb-16-2024, 12:02 AM
Last Post: deanhystad
  Updating sharepoint excel file odd results cubangt 1 2,194 Nov-03-2023, 05:13 PM
Last Post: noisefloor
  Trying to understand strings and lists of strings Konstantin23 2 1,907 Aug-06-2023, 11:42 AM
Last Post: deanhystad
Question Need help for a python script to extract information from a list of files lephunghien 6 2,768 Jun-12-2023, 05:40 PM
Last Post: snippsat
  Extract file only (without a directory it is in) from ZIPIP tester_V 1 4,507 Jan-23-2023, 04:56 AM
Last Post: deanhystad
  azure TTS from text files to mp3s mutantGOD 2 3,392 Jan-17-2023, 03:20 AM
Last Post: mutantGOD
  Trying to send file to printer with no results. chob_thomas 2 6,158 Dec-21-2022, 07:12 AM
Last Post: Pedroski55

Forum Jump:

User Panel Messages

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