gpt4 book ai didi

python - 在 Python 中标记一个保留分隔符的字符串

转载 作者:IT老高 更新时间:2023-10-28 21:09:24 26 4
gpt4 key购买 nike

在 Python 中是否有任何等效于 str.split 的也返回分隔符的方法?

在处理一些标记后,我需要为我的输出保留空白布局。

例子:

>>> s="\tthis is an  example"
>>> print s.split()
['this', 'is', 'an', 'example']

>>> print what_I_want(s)
['\t', 'this', ' ', 'is', ' ', 'an', ' ', 'example']

谢谢!

最佳答案

怎么样

import re
splitter = re.compile(r'(\s+|\S+)')
splitter.findall(s)

关于python - 在 Python 中标记一个保留分隔符的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1820336/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com