gpt4 book ai didi

php - 从包含特定短语的文本中提取句子

转载 作者:行者123 更新时间:2023-12-02 21:25:43 24 4
gpt4 key购买 nike

我有一个包含 2 句话的文本文档:

堆栈溢出是最好的。你好堆栈。

(末尾的点表示句子的结束。)

如果句子包含the best,如何从文本中提取整个句子

并输出包含the best的整个句子:

输出:堆栈溢出是最好的。

没有尝试过。我应该使用什么正则表达式?

最佳答案

打印所有包含the best的句子,不使用正则表达式

$contents = file_get_contents("file.txt");
$sentences = explode('.',$contents);

foreach($sentences as $sentence) {
if(false !== strpos($sentence,'the best'))
print trim($sentence) . "\n";
}

Demo

关于php - 从包含特定短语的文本中提取句子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24481740/

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