gpt4 book ai didi

python - 在某些字符后拆分字符串?

转载 作者:太空宇宙 更新时间:2023-11-04 00:08:47 24 4
gpt4 key购买 nike

我会得到一个字符串,每当它有一个“|”、“/”、“.”时我都需要拆分它。或“_”

我怎样才能快速做到这一点?我知道如何使用命令 split,但是有什么办法可以给它提供不止 1 个拆分条件吗?例如,如果给定的输入是

Hello test|multiple|36.strings/just36/testing

我希望输出为:

"['Hello test', 'multiple', '36', 'strings', 'just36', 'testing']"

最佳答案

使用正则表达式和正则表达式模块:

>>> import re
>>> s='You/can_split|multiple'
>>> re.split(r'[/_|.]', s)
['You', 'can', 'split', 'multiple']

在这种情况下,[/_|.] 将根据这些字符中的任何一个进行拆分。

或者,您可以使用列表理解来插入单个(可能是多个字符)定界符,然后在其上拆分:

>>> ''.join(['-><-' if c in '/_|.' else c for c in s]).split('-><-')
['You', 'can', 'split', 'multiple']

添加示例:

>>> s2="Hello test|multiple|36.strings/just36/testing"

方法一:

>>> re.split(r'[/_|.]', s2)
['Hello test', 'multiple', '36', 'strings', 'just36', 'testing']

方法二:

>>> ''.join(['-><-' if c in '/_|.' else c for c in s2]).split('-><-')
['Hello test', 'multiple', '36', 'strings', 'just36', 'testing']

关于python - 在某些字符后拆分字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53217666/

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