gpt4 book ai didi

python - 使用 shlex 拆分多行字符串并保留引号字符

转载 作者:太空宇宙 更新时间:2023-11-03 13:45:50 25 4
gpt4 key购买 nike

如何使用 Python 的 shlex 拆分字符串,同时保留 shlex 拆分的引号字符?

示例输入:

Two Words
"A Multi-line
comment."

期望的输出:

['Two', 'Words', '"A Multi-line\ncomment."']

注意用双引号将多行字符串括起来。我通读了 shlex documentation ,但我没有看到明显的选择。这需要正则表达式解决方案吗?

最佳答案

>>> print(s)
Two Words
"A Multi-line
comment."
>>> shlex.split(s)
['Two', 'Words', 'A Multi-line\n comment.']
>>> shlex.split(s, posix=False)
['Two', 'Words', '"A Multi-line\n comment."']
>>>

Changed in version 2.6: Added the posix parameter.

关于python - 使用 shlex 拆分多行字符串并保留引号字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20752751/

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