I have
s = "[[[ab_1]]] bla1 [[[cd_3]]] bla2 "
I want to split s into "bla1" and "bla2". the thing is, ab_1 and cd_3 are dynamic literals. they can be anything in form "letters_numbers".
I am stuck like never before.. I tried with split() but it is getting ugly because s can be a long string with multiple delimeters in it..
any pythonic ideas?
s?