Python Forum
Extracting data based on specific patterns in a text file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Extracting data based on specific patterns in a text file
#1
I have a huge report file with some data where i have to do some data processing on lines starting with the code "MLT-TRR" For now i have extracted all the lines in my script that start with that code and placed them in a separate file. The new file looks like this.

MLT-TRR Warning C:\Users\Di\Pictures\SavedPictures\top.png 63 10 Port is not registered [Folder: 'Picture']

MLT-TRR Warning C:\Users\Di\Pictures\SavedPictures\tree.png 315 10 Port is not registered [Folder: 'Picture.first_inst']

MLT-TRR Warning C:\Users\Di\Pictures\SavedPictures\top.png 315 10 Port is not registered [Folder: 'Picture.second_inst']

MLT-TRR Warning C:\Users\Di\Pictures\SavedPictures\tree.png 317 10 Port is not registered [Folder: 'Picture.third_inst']

MLT-TRR Warning C:\Users\Di\Pictures\SavedPictures\top.png 317 10 Port is not registered [Folder: 'Picture.fourth_inst']

For each of these lines i have to extract the data that lies after "[Folder: 'Picture" If there is no data after "[Folder: 'Picture" as in the case of my first line, then skip that line and move on to the next line. I also want to extract the file names for each of those lines- top.txt, tree.txt

I couldnt think of a simpler method to do this as this involves a loop and gets messier. Is there any way out i can do this? extracting just the file paths and the ending data of each line.
Reply
#2
You can do this by learning regular expresions, the re module.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Extracting data from bank statement PDFs (Accountant) a4avinash 4 4,921 Feb-27-2025, 01:53 PM
Last Post: griffinhenry
  Changing client.get() method type based on size of data... dl0dth 1 531 Jan-02-2025, 08:30 PM
Last Post: dl0dth
  Confused by the different ways of extracting data in DataFrame leea2024 1 637 Aug-17-2024, 01:34 PM
Last Post: deanhystad
  Reading an ASCII text file and parsing data... oradba4u 2 1,363 Jun-08-2024, 12:41 AM
Last Post: oradba4u
  Extracting the correct data from a CSV file S2G 6 1,731 Jun-03-2024, 04:50 PM
Last Post: snippsat
  Copy Paste excel files based on the first letters of the file name Viento 2 1,507 Feb-07-2024, 12:24 PM
Last Post: Viento
  Extracting specific file from an archive tester_V 4 1,994 Jan-29-2024, 06:41 PM
Last Post: tester_V
  data validation with specific regular expression shaheen07 0 837 Jan-12-2024, 07:56 AM
Last Post: shaheen07
  Color a table cell based on specific text Creepy 11 5,089 Jul-27-2023, 02:48 PM
Last Post: deanhystad
  Regex Include and Exclude patterns in Same Expression starzar 2 1,833 May-23-2023, 09:12 AM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

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