gpt4 book ai didi

python-2.7 - Python拆分字符串而不拆分转义字符

转载 作者:行者123 更新时间:2023-12-03 11:49:06 25 4
gpt4 key购买 nike

有没有办法在不拆分转义字符的情况下拆分字符串?例如,我有一个字符串,想按 ':' 而不是按 '\:' 分割

http\://www.example.url:ftp\://www.example.url

结果应如下所示:
['http\://www.example.url' , 'ftp\://www.example.url']

最佳答案

请注意 : 似乎不是需要转义的字符。

我能想到的最简单的方法是在字符上拆分,然后在转义时将其添加回来。

示例代码(非常需要一些整理。):

def splitNoEscapes(string, char):
sections = string.split(char)
sections = [i + (char if i[-1] == "\\" else "") for i in sections]
result = ["" for i in sections]
j = 0
for s in sections:
result[j] += s
j += (1 if s[-1] != char else 0)
return [i for i in result if i != ""]

关于python-2.7 - Python拆分字符串而不拆分转义字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18092354/

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