我如何修剪空白?

问题描述 投票:987回答:15

是否有一个Python函数可以从字符串中修剪空格(空格和制表符)?

示例:\t example string\texample string

python string whitespace trim strip
15个回答
1519
投票

双方空白:

s = "  \t a string example\t  "
s = s.strip()

右侧的空白:

s = s.rstrip()

左侧的空白:

s = s.lstrip()

正如thedz指出的那样,你可以提供一个参数来将任意字符剥离到这些函数中,如下所示:

s = s.strip(' \t\n\r')

这将从字符串的左侧,右侧或两侧剥离任何空格,\t\n\r字符。

上面的示例仅从字符串的左侧和右侧删除字符串。如果您还要从字符串中间删除字符,请尝试re.sub

import re
print re.sub('[\s+]', '', s)

那应该打印出来:

astringexample

1
投票

如果使用Python 3:在print语句中,请使用sep =“”结束。这将分离出所有空间。

例:

txt="potatoes"
print("I love ",txt,"",sep="")

这将打印:我喜欢土豆。

而不是:我喜欢土豆。

在你的情况下,因为你试图乘坐\ t,所以做sep =“\ t”


0
投票

尝试翻译

>>> import string
>>> print '\t\r\n  hello \r\n world \t\r\n'

  hello 
 world  
>>> tr = string.maketrans(string.whitespace, ' '*len(string.whitespace))
>>> '\t\r\n  hello \r\n world \t\r\n'.translate(tr)
'     hello    world    '
>>> '\t\r\n  hello \r\n world \t\r\n'.translate(tr).replace(' ', '')
'helloworld'

0
投票

如果你想从字符串的开头和结尾修剪空格,你可以这样做:

some_string = "    Hello,    world!\n    "
new_string = some_string.strip()
# new_string is now "Hello,    world!"

这与Qt的QString :: trimmed()方法非常相似,因为它删除了前导和尾随空格,同时只留下内部空白。

但是如果你喜欢Qt的QString :: simplified()方法,它不仅可以删除前导空格和尾随空格,还可以“将所有连续的内部空白”“移植”到一个空格字符,你可以使用.split()" ".join的组合,就像这个:

some_string = "\t    Hello,  \n\t  world!\n    "
new_string = " ".join(some_string.split())
# new_string is now "Hello, world!"

在最后一个示例中,每个内部空白序列都替换为单个空格,同时仍然从字符串的开头和结尾修剪空白。


-1
投票

一般来说,我使用以下方法:

>>> myStr = "Hi\n Stack Over \r flow!"
>>> charList = [u"\u005Cn",u"\u005Cr",u"\u005Ct"]
>>> import re
>>> for i in charList:
        myStr = re.sub(i, r"", myStr)

>>> myStr
'Hi Stack Over  flow'

注意:这仅用于删除“\ n”,“\ r”和“\ t”。它不会删除多余的空格。


-2
投票

用于从字符串中间删除空格

$p = "ATGCGAC ACGATCGACC";
$p =~ s/\s//g;
print $p;

输出:ATGCGACACGATCGACC


-17
投票

这将从字符串的开头和结尾删除所有空格和换行符:

>>> s = "  \n\t  \n   some \n text \n     "
>>> re.sub("^\s+|\s+$", "", s)
>>> "some \n text"

69
投票

Python trim方法称为strip

str.strip() #trim
str.lstrip() #ltrim
str.rstrip() #rtrim

22
投票

对于前导和尾随空格:

s = '   foo    \t   '
print s.strip() # prints "foo"

否则,正则表达式起作用:

import re
pat = re.compile(r'\s+')
s = '  \t  foo   \t   bar \t  '
print pat.sub('', s) # prints "foobar"

18
投票

您还可以使用非常简单的基本函数:str.replace(),使用空格和制表符:

>>> whitespaces = "   abcd ef gh ijkl       "
>>> tabs = "        abcde       fgh        ijkl"

>>> print whitespaces.replace(" ", "")
abcdefghijkl
>>> print tabs.replace(" ", "")
abcdefghijkl

简单易行。


12
投票
#how to trim a multi line string or a file

s=""" line one
\tline two\t
line three """

#line1 starts with a space, #2 starts and ends with a tab, #3 ends with a space.

s1=s.splitlines()
print s1
[' line one', '\tline two\t', 'line three ']

print [i.strip() for i in s1]
['line one', 'line two', 'line three']




#more details:

#we could also have used a forloop from the begining:
for line in s.splitlines():
    line=line.strip()
    process(line)

#we could also be reading a file line by line.. e.g. my_file=open(filename), or with open(filename) as myfile:
for line in my_file:
    line=line.strip()
    process(line)

#moot point: note splitlines() removed the newline characters, we can keep them by passing True:
#although split() will then remove them anyway..
s2=s.splitlines(True)
print s2
[' line one\n', '\tline two\t\n', 'line three ']

4
投票

还没有人发布这些正则表达式解决方案。

匹配:

>>> import re
>>> p=re.compile('\\s*(.*\\S)?\\s*')

>>> m=p.match('  \t blah ')
>>> m.group(1)
'blah'

>>> m=p.match('  \tbl ah  \t ')
>>> m.group(1)
'bl ah'

>>> m=p.match('  \t  ')
>>> print m.group(1)
None

搜索(您必须以不同方式处理“仅空格”输入案例):

>>> p1=re.compile('\\S.*\\S')

>>> m=p1.search('  \tblah  \t ')
>>> m.group()
'blah'

>>> m=p1.search('  \tbl ah  \t ')
>>> m.group()
'bl ah'

>>> m=p1.search('  \t  ')
>>> m.group()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'NoneType' object has no attribute 'group'

如果你使用re.sub,你可能会删除内部空格,这可能是不可取的。


3
投票

空白包括空格,制表符和CRLF。因此,我们可以使用的优雅和单线字符串功能是翻译。

' hello apple'.translate(None, ' \n\t\r')

或者如果你想要彻底

import string
' hello  apple'.translate(None, string.whitespace)

3
投票

(re.sub('+','',(my_str.replace('\ n',''))))。strip()

这将删除所有不需要的空格和换行符。希望这有帮助

import re
my_str = '   a     b \n c   '
formatted_str = (re.sub(' +', ' ',(my_str.replace('\n',' ')))).strip()

这将导致:

'a b \ n c'将更改为'a b c'


2
投票
    something = "\t  please_     \t remove_  all_    \n\n\n\nwhitespaces\n\t  "

    something = "".join(something.split())

输出:please_remove_all_whitespaces

© www.soinside.com 2019 - 2024. All rights reserved.