使用 Python 修剪空白
使用字符串时,通常需要删除不需要的空白字符,例如空格和制表符。 Python 提供了几个内置函数来帮助您实现此目的。
str.strip()
str.strip() 函数删除空白字符(空格、制表符) 、换行符和回车符)来自字符串的两侧。例如:
<code class="python">s = " \t example string\t " s = s.strip() print(s) # Output: "example string"</code>
str.rstrip()
str.rstrip() 函数删除字符串右侧的空白字符。例如:
<code class="python">s = "example string " s = s.rstrip() print(s) # Output: "example string"</code>
str.lstrip()
str.lstrip() 函数删除字符串左侧的空白字符。例如:
<code class="python">s = " example string" s = s.lstrip() print(s) # Output: "example string"</code>
自定义字符删除
您可以使用 strip()、rstrip() 和 lstrip 中的可选参数指定要删除的自定义字符() 函数。例如:
<code class="python">s = " \t\n example string\t " s = s.strip(' \t\n') print(s) # Output: "example string"</code>
用于删除空格的正则表达式
如果需要从字符串中间删除空格字符,可以使用正则表达式。例如:
<code class="python">import re s = " example string " s = re.sub('[\s+]', '', s) print(s) # Output: "astringexample"</code>
以上是如何有效地从 Python 字符串中删除不需要的空格?的详细内容。更多信息请关注PHP中文网其他相关文章!