Problem: given a list of numbers such as
{{1, 2}, {5, 3, 7}, {4} }
convert the above to list of strings
{"12", "537", "4"}
Mathematica a={{1,2},{5,3,7},{4}}; Map[ToString[#]&,a,{2}]; Map[StringJoin[#]&,%]
|
List["12","537","4"] |