输入字符串s过滤多余空格
时间: 2024-02-16 15:29:05 浏览: 76
C++字符串.pdfy
以下是使用Python的示例代码:
```python
s = " This is a string with extra spaces. "
s = ' '.join(s.split())
print(s)
```
输出:
```
This is a string with extra spaces.
```
该代码将字符串`s`分割成单词列表,然后使用空格将列表中的单词连接起来,从而过滤掉多余的空格。
阅读全文