I have the following
str = '[5.955894, 45.817792], [10.49238, 45.817792], [10.49238, 47.808381], [5.955894, 47.808381]'
I want to split it so that I have an array of strings like
['[5.955894, 45.817792]', '[10.49238, 45.817792]', ...]
So that the [...] objects are elements of the array. It is important that the enclosing [ and ] are included. I've come so far:
re.split('D,sD', str)
But that gives me:
['[5.955894, 45.817792', '10.49238, 45.817792', '10.49238, 47.808381', '5.955894, 47.808381]']
Not really what I want.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…