c++ 字符串分割 代码
时间: 2023-10-18 07:03:15 浏览: 67
c++中实现分割字符串的代码
4星 · 用户满意度95%
可以使用 Python 中的 split() 函数来分割字符串。例如:
```
s = 'hello world'
# 默认情况下,split() 会按照空格来分割字符串
result = s.split()
print(result) # ['hello', 'world']
# 可以指定分割符来分割字符串
result = s.split('l')
print(result) # ['he', '', 'o wor', 'd']
```
你也可以使用字符串的 partition() 方法来分割字符串。例如:
```
s = 'hello world'
# partition() 会将字符串按照指定的分隔符分割成三部分,并返回一个三元组
result = s.partition('l')
print(result) # ('he', 'l', 'lo world')
```
阅读全文