将列表转换为字符串

时间:2015-06-16 07:52:38

标签: r

我想将存储为list的值转换为单个字符串。

例如:

l <- list(1,2,3,4)

会给:

"1234"

而不是使用unlist()的输出:

unlist(l)
#[1] "1" "2" "3" "4"

1 个答案:

答案 0 :(得分:15)

 paste( unlist(l), collapse='')