gpt4 book ai didi

字符串列表上的 lisp 成员函数

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

我正在使用 LISP,想知道如何访问字符串列表中的成员。我已经尝试了成员函数,但一直得到 NIL。谢谢

(setq phrase-list '( "What color is the sky?"  "It is Blue.")) ;list of strings

(write phrase-list)
(terpri)

(setq x(read-line)) ; I try to input What color is the sky?

(write(member x phrase-list)) ; I keep getting NIL

最佳答案

你需要设置正确的测试函数

(member x phrase-list :test #'string=)

或者 equal 也应该有效。

关于 Common Lisp 的一些信息 predicates

关于字符串列表上的 lisp 成员函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47233054/

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