gpt4 book ai didi

python - 有效地在多个字符串定界符上拆分 python 字符串

转载 作者:太空宇宙 更新时间:2023-11-03 12:21:44 26 4
gpt4 key购买 nike

假设我有一个字符串,例如“让我们把这个字符串分成许多小的” 我想将它拆分为 thisintoones

这样输出看起来像这样:

["Let's split", "this string", "into many small", "ones"]

最有效的方法是什么?

最佳答案

向前看。

>>> re.split(r'\s(?=(?:this|into|ones)\b)', "Let's split this string into many small ones")
["Let's split", 'this string', 'into many small', 'ones']

关于python - 有效地在多个字符串定界符上拆分 python 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13935454/

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