Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Python: Python

trim start and trailing space chars from string

 

 

Python python RSS feed   Index | Next | Previous | View Threaded


kostaspaxos at yahoo

Sep 15, 2007, 2:24 AM

Post #1 of 4 (353 views)
Permalink
trim start and trailing space chars from string

Hi,
is there something corresponding to the java String.trim() method, ie
trim start and trailing space/tab chars from string?
say convert " asdf " to "asdf"?

Thnx
--
http://mail.python.org/mailman/listinfo/python-list


tim at tdw

Sep 15, 2007, 2:27 AM

Post #2 of 4 (331 views)
Permalink
Re: trim start and trailing space chars from string [In reply to]

On 15/09/2007, Konstantinos Pachopoulos <kostaspaxos [at] yahoo> wrote:
> Hi,
> is there something corresponding to the java String.trim() method, ie
> trim start and trailing space/tab chars from string?
> say convert " asdf " to "asdf"?

>>> ' asdf '.strip()
'asdf'
>>> ' asdf '.rstrip()
' asdf'
>>> ' asdf '.lstrip()
'asdf '
>>>
--
http://mail.python.org/mailman/listinfo/python-list


sjmachin at lexicon

Sep 15, 2007, 3:33 AM

Post #3 of 4 (330 views)
Permalink
Re: trim start and trailing space chars from string [In reply to]

On Sep 15, 7:24 pm, Konstantinos Pachopoulos <kostaspa...@yahoo.gr>
wrote:
> Hi,
> is there something corresponding to the java String.trim() method, ie
> trim start and trailing space/tab chars from string?
> say convert " asdf " to "asdf"?

http://docs.python.org/lib/string-methods.html


--
http://mail.python.org/mailman/listinfo/python-list


rustompmody at gmail

Sep 15, 2007, 4:02 AM

Post #4 of 4 (333 views)
Permalink
Re: trim start and trailing space chars from string [In reply to]

>>> s=" abcdef "
>>> s.strip()
'abcdef'
>>> s.rstrip()
' abcdef'
>>> s.lstrip()
'abcdef '
>>>


On 9/15/07, Konstantinos Pachopoulos <kostaspaxos [at] yahoo> wrote:
> Hi,
> is there something corresponding to the java String.trim() method, ie
> trim start and trailing space/tab chars from string?
> say convert " asdf " to "asdf"?
>
> Thnx
> --
> http://mail.python.org/mailman/listinfo/python-list
>
--
http://mail.python.org/mailman/listinfo/python-list

Python python RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.