gpt4 book ai didi

string - 如何将字符串列表转换为方案中的一个字符串?

转载 作者:行者123 更新时间:2023-12-04 01:40:00 26 4
gpt4 key购买 nike

例如我有 (list "a" "1" "b" "2" "c" "3") .

现在我想把这个列表变成一个 "a1b2c3" .

我该怎么做?

谢谢。

最佳答案

(apply string-append (list "a" "1" "b" "2" "c" "3"))(string-append* "" (list "a" "1" "b" "2" "c" "3"))应该工作。见:http://docs.racket-lang.org/reference/strings.html

如果你想要一个程序来做到这一点,你可以写 (define (strings->string sts) (apply string-append sts))

关于string - 如何将字符串列表转换为方案中的一个字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16880569/

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