gpt4 book ai didi

python - 拆分没有空字符串的python字符串

转载 作者:行者123 更新时间:2023-12-05 09:35:08 26 4
gpt4 key购买 nike

以下代码:

str = 'Welcome\nto\nPythonExamples\nWelcome\nto\nPythonExamples'
chunks = str.split('\n')
print(chunks)

正确打印出:

['Welcome', 'to', 'PythonExamples', 'Welcome', 'to', 'PythonExamples']

我想将字符串拆分为以 'Welcome\n' 开头的字符串,所以我尝试了以下操作:

str = 'Welcome\nto\nPythonExamples\nWelcome\nto\nPythonExamples'
chunks = str.split('Welcome\n')
print(chunks)

但这会打印出:

['', 'to\nPythonExamples\n', 'to\nPythonExamples']

注意第一个条目是空的。我怎样才能正确拆分它以便输出?

['to\nPythonExamples\n', 'to\nPythonExamples']

最佳答案

如果我理解正确的话,你想避免空字符串。你可以只使用列表理解,这样做:

chunks = [x for x in str.split('Welcome\n') if x]

应该可以解决您的问题。为什么?

首先,列表推导式在末尾添加了 if x,这意味着它将仅在列表中包含 truthy 值(或者更确切地说,将忽略 falsy值(value)观)。

但是为什么你首先得到 '' 呢?将您指向 source code for split 会更容易:

while (maxcount-- > 0) {
pos = FASTSEARCH(str+i, str_len-i, sep, sep_len, -1, FAST_SEARCH);
if (pos < 0)
break;
j = i + pos;
SPLIT_ADD(str, i, j);
i = j + sep_len;
}

基本上,split 函数会在 split(sep) 中寻找下一次出现的 sep 并从最后一次出现的位置派生一个子字符串(它会这样做 maxcount 次)。由于您在位置 0 中得到了 Welcome\n 并且您的“最后一次出现”为 0,因此它将生成一个从 0 到 0 的子字符串,这将导致一个空字符串。

顺便说一句,对于这样的字符串,您还会得到空字符串:

'Welcome\nWelcome\nto\nPythonExamples\nWelcome\nto\nPythonExamples'

你的代码的结果,没有我的改变:

['', '', 'to\nPythonExamples\n', 'to\nPythonExamples']

关于python - 拆分没有空字符串的python字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66068367/

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