Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Finding nested delimiters
#2
If you think it's easier, you can add {} with the re module:
for line in file:
    line = re.sub(r'^(\s*)(begin\s)', r'\1{\2', line)
    line = re.sub(r'^(\s*)end(\s)', r'\1end}\2', line)
    print(line)
Reply


Messages In This Thread
Finding nested delimiters - by wfsteadman - Jan-21-2018, 07:24 PM
RE: Finding nested delimiters - by Gribouillis - Jan-21-2018, 08:52 PM
RE: Finding nested delimiters - by wfsteadman - Jan-22-2018, 04:01 AM
RE: Finding nested delimiters - by Gribouillis - Jan-22-2018, 06:24 AM
RE: Finding nested delimiters - by DeaD_EyE - Jan-22-2018, 07:23 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Delimiters - How to skip some html tags from being translate Melcu54 0 1,619 May-26-2021, 06:21 AM
Last Post: Melcu54
  Parse String between 2 Delimiters and add as single list items lastyle 5 3,282 Apr-11-2021, 11:03 PM
Last Post: lastyle
  Split string between two different delimiters, with exceptions DreamingInsanity 2 1,977 Aug-24-2020, 08:23 AM
Last Post: DreamingInsanity
  Finding value in nested dictionaries with lists mart79 16 7,734 Mar-08-2020, 08:16 PM
Last Post: ndc85430
  Problem with delimiters johnprada 5 2,640 Jan-29-2020, 10:17 AM
Last Post: DeaD_EyE
  Problem with delimiters johnprada 1 1,923 Jan-28-2020, 04:27 PM
Last Post: buran
  splitting a string with 2 different delimiters Skaperen 4 2,646 Dec-30-2019, 04:49 AM
Last Post: BamBi25
  Split a long string into other strings with no delimiters/characters krewlaz 4 2,702 Nov-15-2019, 02:48 PM
Last Post: ichabod801
  re.split multiple delimiters problem gw1500se 2 3,563 Jun-24-2019, 02:43 PM
Last Post: gw1500se

Forum Jump:

User Panel Messages

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