gpt4 book ai didi

string - Prolog 列表到逗号分隔的字符串

转载 作者:行者123 更新时间:2023-12-04 17:04:35 25 4
gpt4 key购买 nike

我有一个类似 [apple, orange] 的列表我想将其转换为类似 "apple,orange" 的字符串在序言中。你有什么主意吗?

最佳答案

在 SWI-Prolog 中,您可以简单地使用 atomic_list_concat/3atom_string/2 :

?- atomic_list_concat([apple, banana, oranges], ',', Atom), atom_string(Atom, String).

Atom = 'apple,banana,oranges',
String = "apple,banana,oranges".

关于string - Prolog 列表到逗号分隔的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5879956/

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