Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Context-sensitive delimiter
#2
You could use a different delimiter, say a semicolon inside the square brackets. After you have your list, you can replace the semicolon (or whichever delimiter you chose) with a comma. Something like this is what I'm thinking:

initial_text = "Richtung route, trend, way [route; direction], tendency [political etc.], course [direction], direction [course; route]"

split_text = initial_text.split(",")

final_text = [s.replace(";", ",").strip() for s in split_text]

print(final_text)
If you really need to keep commas inside the square brackets, you can use regular expressions to extract the text in brackets, replace the bracketed text with a placeholder string, split the string with a comma delimiter, and finally, replace the placeholder string with the original bracketed text.

import re

text = "Richtung route, trend, way [route, direction], tendency [political etc.], course [direction], " \
           "direction [course, route]"

brackets = re.findall(r'\[.*?\]', text)

for sub in brackets:
    text = text.replace(sub, "***") # "***" can be any sufficiently unique placeholder string that you are certain won't otherwise appear in your string

split_text = text.split(",")

final_text = []

iter_brackets = iter(brackets)
    
for s in split_text:
    temp = s
    if s.count("***") != 0:
        temp = s.replace("***", next(iter_brackets)).strip()
    final_text.append(temp)

print(final_text)
But if the commas inside the square brackets are not required, the first solution seems more straightforward to me. Hope this helps.
Reply


Messages In This Thread
Context-sensitive delimiter - by ZZTurn - May-15-2023, 08:19 AM
RE: Context-sensitive delimiter - by idratherbecoding - May-15-2023, 03:30 PM
RE: Context-sensitive delimiter - by ZZTurn - May-15-2023, 05:08 PM
RE: Context-sensitive delimiter - by Gribouillis - May-15-2023, 05:21 PM
RE: Context-sensitive delimiter - by ZZTurn - May-15-2023, 06:58 PM
RE: Context-sensitive delimiter - by Gribouillis - May-15-2023, 07:51 PM
RE: Context-sensitive delimiter - by ZZTurn - May-15-2023, 09:38 PM
RE: Context-sensitive delimiter - by Gribouillis - May-15-2023, 09:50 PM
RE: Context-sensitive delimiter - by ZZTurn - May-15-2023, 10:10 PM
RE: Context-sensitive delimiter - by Gribouillis - May-16-2023, 07:31 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 3,716 Nov-09-2023, 10:56 AM
Last Post: mg24
  Read csv file with inconsistent delimiter gracenz 2 2,408 Mar-27-2023, 08:59 PM
Last Post: deanhystad
  How does open context manager work? deanhystad 7 2,663 Nov-08-2022, 02:45 PM
Last Post: deanhystad
  Delimiter issue with a CSV file jehoshua 1 2,347 Apr-19-2022, 01:28 AM
Last Post: jehoshua
  Decimal context stevendaprano 1 1,561 Apr-11-2022, 09:44 PM
Last Post: deanhystad
  How to create new line '/n' at each delimiter in a string? MikeAW2010 3 6,201 Dec-15-2020, 05:21 PM
Last Post: snippsat
  Case sensitive checks kam_uk 2 2,669 Nov-30-2020, 01:25 AM
Last Post: bowlofred
  copy content of text file with three delimiter into excel sheet vinaykumar 0 2,882 Jul-12-2020, 01:27 PM
Last Post: vinaykumar
  How to print string multiple times separated by delimiter Mekala 1 2,515 May-23-2020, 09:21 AM
Last Post: Yoriz
  TextIOWrapper.tell() with Python 3.6.9 in context of 0D/0A fschaef 0 2,723 Mar-29-2020, 09:18 AM
Last Post: fschaef

Forum Jump:

User Panel Messages

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