Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to write a function in python that gets a string-

If the first or last characters in the string are spaces, then they should be removed (both). If not than nothing should be done.

" Hello " ----> "Hello"

" Hello" -----> "Hello"

"Hello " -----> "Hello"

"Bob has a cat" ----> "Bob has a cat" (none of the spaces in the middle are removed.)

share|improve this question
19  
Probably a lot of java programmers like me that tried "Hello ".trim() before trying the internets. – James Kingsbery May 1 '12 at 20:39
10  
this is google first hit for "python trim string" – Eric May 18 '12 at 20:18

5 Answers

up vote 266 down vote accepted

Just one space, or all such spaces? If the second, then strings already have a .strip() method:

>>> ' Hello '.strip()
'Hello'
>>> ' Hello'.strip()
'Hello'
>>> 'Bob has a cat'.strip()
'Bob has a cat'
>>> '          Hello        '.strip()  # ALL spaces at ends removed
'Hello'

If you need only to remove one space however, you could do it with:

def strip_one_space(s):
    if s.endswith(" "): s = s[:-1]
    if s.startswith(" "): s = s[1:]
    return s

>>> strip_one_space("   Hello ")
'  Hello'

Also, note that str.strip() removes other whitespace characters as well (e.g. tabs and newlines). To remove only spaces, you can specify the character to remove as an argument to strip, i.e.:

>>> "  Hello\n".strip(" ")
'Hello\n'
share|improve this answer
3  
Great answer brother. – santiagobasulto Oct 24 '11 at 15:31

As pointed out in answers above

 myString.strip()

will remove all the leading and trailing whitespace characters such as \n, \r, \t, \f, space.

For more flexibility use the following

  • Removal of only leading whitespace chars: myString.lstrip()
  • Removal of only trailing whitespace chars: myString.rstrip()
  • Removal of specific whitespace chars: myString.strip('\n') or myString.lstrip('\n\r') or myString.rstrip('\n\t') and so on.

These details are also available at http://docs.python.org/release/2.3/lib/module-string.html

share|improve this answer
myString.strip()
share|improve this answer

strip is not limited to whitespace characters either:

# remove all leading/trailing commas, periods and hyphens
title = title.strip(',.-')
share|improve this answer

You want strip():

myphrases = [ " Hello ", " Hello", "Hello ", "Bob has a cat" ]

for phrase in myphrases:
    print phrase.strip()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.