如何从 Python 中的字符串中删除前导和尾随空格?
" Hello world " --> "Hello world"
" Hello world" --> "Hello world"
"Hello world " --> "Hello world"
"Hello world" --> "Hello world"
.strip()
。例子:
>>> ' Hello '.strip()
'Hello'
>>> ' Hello'.strip()
'Hello'
>>> 'Bob has a cat'.strip()
'Bob has a cat'
>>> ' Hello '.strip() # ALL consecutive spaces at both ends removed
'Hello'
str.strip()
会删除所有空白字符,包括制表符和换行符。要仅删除空格,请指定要删除的特定字符作为 strip
: 的参数
>>> " Hello\n ".strip(" ")
'Hello\n'
最多只删除一个空格:
def strip_one_space(s):
if s.endswith(" "): s = s[:-1]
if s.startswith(" "): s = s[1:]
return s
>>> strip_one_space(" Hello ")
' Hello'
正如上面答案所指出的
my_string.strip()
将删除所有前导和尾随空白字符,例如
\n
、\r
、\t
、\f
、空格
。
为了获得更大的灵活性,请使用以下内容
my_string.lstrip()
my_string.rstrip()
my_string.strip('\n')
或my_string.lstrip('\n\r')
或my_string.rstrip('\n\t')
等。更多详细信息请参阅docs。
strip
也不限于空白字符:
# remove all leading/trailing commas, periods and hyphens
title = title.strip(',.-')
这将删除 myString
中的
all前导和尾随空格:
myString.strip()
strip()
:
myphrases = [" Hello ", " Hello", "Hello ", "Bob has a cat"]
for phrase in myphrases:
print(phrase.strip())
这也可以通过正则表达式来完成
import re
input = " Hello "
output = re.sub(r'^\s+|\s+$', '', input)
# output = 'Hello'
作为一个初学者,看到这个帖子让我头晕目眩。因此想出了一个简单的捷径。
虽然 str.strip() 可以删除前导和尾随空格,但它对字符之间的空格没有任何作用。
words=input("Enter the word to test")
# If I have a user enter discontinous threads it becomes a problem
# input = " he llo, ho w are y ou "
n=words.strip()
print(n)
# output "he llo, ho w are y ou" - only leading & trailing spaces are removed
相反,使用 str.replace() 更有意义,错误更少,更切题。 下面的代码可以概括str.replace()的使用
def whitespace(words):
r=words.replace(' ','') # removes all whitespace
n=r.replace(',','|') # other uses of replace
return n
def run():
words=input("Enter the word to test") # take user input
m=whitespace(words) #encase the def in run() to imporve usability on various functions
o=m.count('f') # for testing
return m,o
print(run())
output- ('hello|howareyou', 0)
在 diff 中继承相同内容时会很有帮助。功能。
为了删除在 Pyhton 中运行完成的代码或程序时导致大量缩进错误的“空格”。只需执行以下操作即可;显然,如果 Python 不断提示错误是第 1、2、3、4、5 行等中的缩进...,只需来回修复该行即可。
但是,如果您仍然遇到与键入错误、运算符等相关的程序问题,请务必阅读为什么错误 Python 对您大喊大叫:
首先要检查的是您是否拥有 正确的缩进。 如果有,请检查是否有 代码中混合制表符和空格。
记住:代码 (对你来说)看起来不错,但解释器拒绝运行它。如果 如果您怀疑这一点,快速解决方法是将您的代码放入 IDLE 编辑窗口,然后选择编辑...”从 菜单系统,然后选择格式...“取消制表区域。 如果您将制表符与空格混合使用,这将转换您的所有 一次性制表符到空格(并修复任何缩进问题)。
我找不到我正在寻找的解决方案,因此我创建了一些自定义函数。你可以尝试一下。
def cleansed(s: str):
""":param s: String to be cleansed"""
assert s is not (None or "")
# return trimmed(s.replace('"', '').replace("'", ""))
return trimmed(s)
def trimmed(s: str):
""":param s: String to be cleansed"""
assert s is not (None or "")
ss = trim_start_and_end(s).replace(' ', ' ')
while ' ' in ss:
ss = ss.replace(' ', ' ')
return ss
def trim_start_and_end(s: str):
""":param s: String to be cleansed"""
assert s is not (None or "")
return trim_start(trim_end(s))
def trim_start(s: str):
""":param s: String to be cleansed"""
assert s is not (None or "")
chars = []
for c in s:
if c is not ' ' or len(chars) > 0:
chars.append(c)
return "".join(chars).lower()
def trim_end(s: str):
""":param s: String to be cleansed"""
assert s is not (None or "")
chars = []
for c in reversed(s):
if c is not ' ' or len(chars) > 0:
chars.append(c)
return "".join(reversed(chars)).lower()
s1 = ' b Beer '
s2 = 'Beer b '
s3 = ' Beer b '
s4 = ' bread butter Beer b '
cdd = trim_start(s1)
cddd = trim_end(s2)
clean1 = cleansed(s3)
clean2 = cleansed(s4)
print("\nStr: {0} Len: {1} Cleansed: {2} Len: {3}".format(s1, len(s1), cdd, len(cdd)))
print("\nStr: {0} Len: {1} Cleansed: {2} Len: {3}".format(s2, len(s2), cddd, len(cddd)))
print("\nStr: {0} Len: {1} Cleansed: {2} Len: {3}".format(s3, len(s3), clean1, len(clean1)))
print("\nStr: {0} Len: {1} Cleansed: {2} Len: {3}".format(s4, len(s4), clean2, len(clean2)))
如果你想从左右修剪指定数量的空格,你可以这样做:
def remove_outer_spaces(text, num_of_leading, num_of_trailing):
text = list(text)
for i in range(num_of_leading):
if text[i] == " ":
text[i] = ""
else:
break
for i in range(1, num_of_trailing+1):
if text[-i] == " ":
text[-i] = ""
else:
break
return ''.join(text)
txt1 = " MY name is "
print(remove_outer_spaces(txt1, 1, 1)) # result is: " MY name is "
print(remove_outer_spaces(txt1, 2, 3)) # result is: " MY name is "
print(remove_outer_spaces(txt1, 6, 8)) # result is: "MY name is"
如何从 Python 中的字符串中删除前导和尾随空格?
因此,下面的解决方案也将删除前导和尾随空格以及中间空格。就像您需要获取没有多个空格的清晰字符串值一样。
>>> str_1 = ' Hello World'
>>> print(' '.join(str_1.split()))
Hello World
>>>
>>>
>>> str_2 = ' Hello World'
>>> print(' '.join(str_2.split()))
Hello World
>>>
>>>
>>> str_3 = 'Hello World '
>>> print(' '.join(str_3.split()))
Hello World
>>>
>>>
>>> str_4 = 'Hello World '
>>> print(' '.join(str_4.split()))
Hello World
>>>
>>>
>>> str_5 = ' Hello World '
>>> print(' '.join(str_5.split()))
Hello World
>>>
>>>
>>> str_6 = ' Hello World '
>>> print(' '.join(str_6.split()))
Hello World
>>>
>>>
>>> str_7 = 'Hello World'
>>> print(' '.join(str_7.split()))
Hello World
如您所见,这将删除字符串中的所有多个空格(所有输出均为
Hello World
)。位置并不重要。但如果您确实需要前导和尾随空格,那么可以找到 strip()
。
一种方法是使用 .strip() 方法(删除所有周围的空格)
str = " Hello World "
str = str.strip()
**result: str = "Hello World"**
请注意,.strip() 返回字符串的副本,并且不会更改下划线对象(因为字符串是不可变)。
如果您希望删除所有空白(不仅仅是修剪边缘):
str = ' abcd efgh ijk '
str = str.replace(' ', '')
**result: str = 'abcdefghijk'
您还可以使用
str.strip()
作为函数:
str.strip(" Hello world ") # 'Hello world'
如果您需要一个需要可调用的上下文,这非常有用。例如,我们可以通过将
str.strip
映射到列表来去除列表中字符串中的空格:
lst = [" Hello ", " Hello", "Hello ", " Bob has a cat "]
list(map(str.strip, lst))
# ['Hello', 'Hello', 'Hello', 'Bob has a cat']
另一个例子:pandas 的
str.strip
确实很慢,但是将 Python 的 str.strip
映射到列上要快 2 倍,特别是因为我们不需要构造 lambda 来使用它:
pd.Series(lst).map(str.strip)
我想删除字符串中过多的空格(也在字符串之间,而不仅仅是在开头或结尾)。我做了这个,因为我不知道该怎么做:
string = "Name : David Account: 1234 Another thing: something "
ready = False
while ready == False:
pos = string.find(" ")
if pos != -1:
string = string.replace(" "," ")
else:
ready = True
print(string)
这会替换一个空格中的双空格,直到不再有双空格