Re: Replacing Periods with Backspaces

2010-04-12 Thread Booter
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

Re: Replacing Periods with Backspaces

2010-04-09 Thread Aahz
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('\

Re: Replacing Periods with Backspaces

2010-04-08 Thread Gabriel Genellina
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*

Replacing Periods with Backspaces

2010-04-08 Thread Booter
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) ===