Hi,
I have a string as str='123ACTGAAC'.
I need to extract the numeric part from the alphabetic part which I
did using
>>>numer=re.findall(r'\d+',str)
>>>numer
123
To get the alphabetic part, I could do
>>>alpha=str.replace('123','')
>>>alpha
ACTGAAC
But when I give
>>>alpha=str.replace(numer,''
Oh yes indeed!
Now that works :D
Thanks a lot !!
2009/8/3 Kushal Kumaran
>
> On Mon, Aug 3, 2009 at 8:47 PM, Sandhya
> Prabhakaran wrote:
> > Hi,
> >
> > I have a string as str='123ACTGAAC'.
> >
> > I need to extract the numeric pa