"inland taipan"] 现在我做了一个句子 str = "A tiger shark spotted here, and a white shark, and a funnel web spider" 从这句话中,我想生成一个结果["tiger shark", "white shark", "funnel web spider"]。关键字以其在句子中的原始顺序<
我带着一个句子,例如,The game is played on a level playing field。
现在,我带了一个单词列表,(played is the)。这些都是随机给我的话。现在,我必须按照句子中发生的顺序来排序。我如何在计划中做到这一点?SRFI库中有什么功能可以帮助我解决这个问题吗?我无法掌握如何递归地做这件事。
我有一个很长的字符串列表,这些字符串按照给定的顺序包含感兴趣的子字符串,但是下面是一个在文本文件中使用句子的小例子:
This is a long drawn out sentence needed to从这个文本文件中,我想找到任何包含"I"和"need"的句子,但是它们必须按照这个顺序出现。所以在这个例
我的目标是遍历一个字符串数据库,并在每次出现每个子字符串时获取计数。换句话说,我需要从字符串中提取所有可能的单词组合。
例如,输入可能是"this is the first string"。我想提取"this is"、"is the"、"the first"、"first string"、"this is the"、