gpt4 book ai didi

python - 如何使用 python 将文本拆分为子句?

转载 作者:太空宇宙 更新时间:2023-11-04 07:15:40 25 4
gpt4 key购买 nike

我想将文本拆分为子句。我该怎么做?

例如:

text = "Hi, this is an apple. Hi, that is pineapple."

结果应该是:

['Hi,',
'this is an apple.',
'Hi,',
'that is pineapple.']

(附:我尝试使用 string.split(r'[,.]'),但它会删除分隔符。)

最佳答案

也许这也行:

text.replace(', ', ',, ').replace('. ', '., ').split(', ')

结果:

['Hi,', 'this is an apple.', 'Hi,', 'that is pineapple.']

关于python - 如何使用 python 将文本拆分为子句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47964378/

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