Apologies if this is redundant, but a fairly deep search of the intertubes revealed nothing relevant here.
I have a string from a (chemical) database where the separators (commas) are occasionally in the items I am hoping to split. An example string is
s = '2-Methyl-3-phythyl-1,4-naphthochinon,Vitamin, K1,Antihemorrhagic vitamin'
The correct split in this instance would yield
splitS = ['2-Methyl-3-phythyl-1,4-naphthochinon', 'Vitamin, K1', 'Antihemorrhagic vitamin']
I believe that the most accurate way I can design this would be to split on commas which do not have a whitespace next to the comma, and which further are not surrounded by 2 numbers. This would leave instances such as '1,4' and 'Vitamin, K1', but split the string into the correct 3 chemical names.
I have tried using RE unsuccessfully. I can post some of what I have tried, but it is pretty much useless. Help is much appreciated.
EDIT: Should have included this originally. Through some of my hacking, and from the more elegant solution from @Borealid, I have correctly identified the locations for splitting, but get hideous output such as
>>> s = '2-Methyl-3-phythyl-1,4-naphthochinon,Vitamin, K1,Antihemorrhagic vitamin'
>>> pat = re.compile("([^\d\s],[^\d\s])|([^\s],[^\d\s])|([^\d\s],[^\s])")
>>> re.split(pat, s)
['2-Methyl-3-phythyl-1,4-naphthochino', 'n,V', None, None, 'itamin, K', None, '1,A', None, 'ntihemorrhagic vitamin']
It seems as though there should be a way to first identify the correct commas to split on, then split on the comma only, thus avoiding names being corrupted.
Thanks Again