Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've split a string by [ and ] but I want these characters to still appear. How do I do this?

words = [beginning for ending in x.split('[') for beginning in ending.split(']')]
share|improve this question
1  
Where do you ant them to appear? In the left part? In the right part? In both of them? – Sven Marnach Nov 21 '11 at 0:29
3  
Tagged "homework" because it's a follow-up to this question, which is tagged "homework". – Sven Marnach Nov 21 '11 at 0:31
1  
I don't understand quite well what you're trying to do. Show us a test case and the expected result. – julio.alegria Nov 21 '11 at 0:33
...or in their own position in the list – wim Nov 21 '11 at 0:33
1  
Have you looked at str.partition? – Daenyth Nov 21 '11 at 0:33

2 Answers

up vote 3 down vote accepted

I think you need re.split to do this easily:

>>> import re
>>> s = 'Hello, my name is [name] and I am [age] years old'
>>> re.split(r'(\[|\])', s)
['Hello, my name is ', '[', 'name', ']', ' and I am ', '[', 'age', ']', ' years old']
share|improve this answer

Would need to know more about the context of your list and what x, beginning, and ending are, but here are some suggestions.

You can add [ and ] to each item in the list, and return a new list, like this:

["[%s]" % s for s in some_list]

Or, string.join will return a string from the items in a list joined by a given string:

"[".join(some_list)
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.