Python字符串去除空格的五种方法
1. 使用strip(方法去除字符串两端的空格:
```python
string = "  Hello World  "
new_string = string.strip
print(new_string)  # Output: "Hello World"
```
2. 使用replace(方法将字符串中的空格替换为空字符串:
```python
string = "  Hello World  "
new_string = place(" ", "")
print(new_string)  # Output: "HelloWorld"
```
3. 使用split(函数将字符串按照空格分割成多个子字符串,然后使用join(函数将这些子字符串连接起来:
```python
string = "  Hello World  "
new_string = "".join(string.split()
print(new_string)  # Output: "HelloWorld"
```
4. 使用正则表达式re.sub(函数去除字符串中的空格:
字符串replace函数```python
import re
string = "  Hello World  "
new_string = re.sub(r"\s+", "", string)
print(new_string)  # Output: "HelloWorld"
```
```python
string = "  Hello World  "
new_string = "".join([char for char in string if char != " "])
print(new_string)  # Output: "HelloWorld"

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。