Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to split a string into a list, separated by a change in character, in python. I am finding this very difficult, but am sure that I am over thinking it and missing a probably simple solution. Example:

'abgg22ffeeekkkk1zzabbb'

would become:

['a', 'b', 'gg', '22', 'ff', 'eee', 'kkkk', '1', 'zz', 'a', 'bbb']

share|improve this question

2 Answers

up vote 5 down vote accepted
import itertools
[''.join(value) for key, value in itertools.groupby(my_str)]
share|improve this answer
Thank you, that worked flawlessly. As I am still very new to python, I would have never figured this method out. I was writing a very lengthy function to do what you did in one line. Is there any chance you could explain how exactly this works, or point me in the right direction? Im looking at the itertools doc, but this is a little more than I am able to grasp ATM. – Zak Aug 31 '11 at 18:30
Yeah, the stuff in itertools is awesome and often mind bending. :-) See the equivalent implementation in the itertools.groupby docs and I'll bet what you were writing was similar in length. The difference is that itertools does it truly iteratively and so doens't need to load the whole sequence into memory or keep it around to do this. You might want to read up on iterators and why they're good. – Ross Patterson Aug 31 '11 at 18:36
Thank you so much, these links look like they will be immensely helpful. – Zak Aug 31 '11 at 18:41
>>> import re
>>> my_str = 'abgg22ffeekkkk1zzabbb'
>>> [m.group() for m in re.finditer(r'(.)\1*', my_str)]
['a', 'b', 'gg', '22', 'ff', 'ee', 'kkkk', '1', 'zz', 'a', 'bbb']
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.