Sandhya Prabhakaran wrote:
Hi,I have a string as str='123ACTGAAC'. I need to extract the numeric part from the alphabetic part which I did usingnumer=re.findall(r'\d+',str) numer123
[snip] I get: ['123'] which is a _list_ of the strings found. -- http://mail.python.org/mailman/listinfo/python-list