Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Regex: positive lookbehind
#2
(Sep-19-2020, 10:36 AM)Secret Wrote: Is there a way to read in text_lines to look exactly like in the csv files so that my regex expression work?
Do you want to read the file in line-by-line fashion?
Probably, you don't need to use regexp here at all, e.g.

for line in f:
    index = line.find('model choice :')
    if index > 0
        index += len('model choice :') 
        what_you_need = line[index:]
Reply


Messages In This Thread
Regex: positive lookbehind - by Secret - Sep-19-2020, 10:36 AM
RE: Regex: positive lookbehind - by scidam - Sep-20-2020, 11:54 PM
RE: Regex: positive lookbehind - by snippsat - Sep-21-2020, 12:59 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Positive integral solutions for Linear Diophantine Equation august 4 1,312 Jan-13-2023, 09:48 PM
Last Post: Gribouillis
  How to do bar graph with positive and negative values different colors? Mark17 1 5,319 Jun-10-2022, 07:38 PM
Last Post: Mark17
  Positive to negative bernardoB 6 4,482 Mar-13-2019, 07:39 PM
Last Post: bernardoB
  negative to positive slices Skaperen 3 3,695 Jan-29-2018, 05:47 AM
Last Post: Skaperen
  How to find any non positive integer noob 3 4,118 Apr-27-2017, 04:46 PM
Last Post: Ofnuts

Forum Jump:

User Panel Messages

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