免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6114 | 回复: 3
打印 上一主题 下一主题

How to get string from list? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-01-07 15:33 |只看该作者 |倒序浏览
Hi, All,
How can I get a string from list? line join in perl
join " ", ("abc", "def", "hij");
-> "abc def hij"
For example,
("abc" "def" "hij")
-> "abc def hij"
or
-> "abcdefhij"

Please help me, Thanks!

Regards,
Wolfkin

论坛徽章:
0
2 [报告]
发表于 2011-01-07 15:44 |只看该作者
It is my mistake,
the solution is
(string-join '("abc" "def" "hij") "-")
the "scheme join list string" is search pattern in google.

论坛徽章:
0
3 [报告]
发表于 2011-03-22 13:43 |只看该作者
中国人在中文的论坛上说中文,没人说你土;如果要说英文,也请说得明白些;说不好,就不要卖弄了。

论坛徽章:
0
4 [报告]
发表于 2011-05-12 23:01 |只看该作者
本帖最后由 leyyer 于 2011-05-15 16:41 编辑
Hi, All,
How can I get a string from list? line join in perl
join " ", ("abc", "def", "hij"
->  ...
wolfkin 发表于 2011-01-07 15:33



common lisp:

(defun xmerge (a b)
            (concatenate 'string a b))
(reduce #'xmerge '("abc" "def" "hij"))

or

(format nil "~{~A~^ ~}" '("abc" "def" "hij"))
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP