All,
Thanks for all the help I finally got it. I ended up not having to
get rid of the periods.
Thanks again!
Gerad
--
http://mail.python.org/mailman/listinfo/python-list
In article <8404fac9-06c7-4555-93af-c78f5e01d...@j21g2000yqh.googlegroups.com>,
Booter wrote:
>
>I am trying to replace a series of periods in a sting with backspaces
>that way I can easily parse information from a Windows command. the
>current statement I have for this is
>
>capture = re.sub('\
En Thu, 08 Apr 2010 12:26:56 -0300, Booter escribió:
I am trying to replace a series of periods in a sting with backspaces
that way I can easily parse information from a Windows command. the
current statement I have for this is
***Statement*
All,
I am trying to replace a series of periods in a sting with backspaces
that way I can easily parse information from a Windows command. the
current statement I have for this is
***Statement
capture = re.sub('\.*', '\b', capture)
===